more checks
This commit is contained in:
parent
8210480bdd
commit
dadf7a943c
@ -14,19 +14,27 @@
|
|||||||
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The deployment linter implements checks for a deployment
|
||||||
|
* of the GNU Taler exchange. It is meant to help sysadmins
|
||||||
|
* when setting up an exchange.
|
||||||
|
*
|
||||||
|
* The linter does checks in the configuration and uses
|
||||||
|
* various tools of the exchange in test mode (-t).
|
||||||
|
*
|
||||||
|
* To be able to run the tools as the right user, the linter should be
|
||||||
|
* run as root.
|
||||||
|
*
|
||||||
|
* @author Florian Dold <dold@taler.net>
|
||||||
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Imports.
|
* Imports.
|
||||||
*/
|
*/
|
||||||
import {
|
import {
|
||||||
buildCodecForObject,
|
|
||||||
Codec,
|
|
||||||
codecForAny,
|
|
||||||
codecForExchangeKeysJson,
|
codecForExchangeKeysJson,
|
||||||
codecForKeysManagementResponse,
|
codecForKeysManagementResponse,
|
||||||
codecForList,
|
|
||||||
codecForString,
|
|
||||||
Configuration,
|
Configuration,
|
||||||
durationFromSpec,
|
|
||||||
} from "@gnu-taler/taler-util";
|
} from "@gnu-taler/taler-util";
|
||||||
import {
|
import {
|
||||||
decodeCrock,
|
decodeCrock,
|
||||||
@ -382,6 +390,7 @@ export async function checkExchangeHttpd(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check if we can use /keys already
|
||||||
{
|
{
|
||||||
const keysUrl = new URL("keys", baseUrl);
|
const keysUrl = new URL("keys", baseUrl);
|
||||||
|
|
||||||
@ -393,9 +402,11 @@ export async function checkExchangeHttpd(
|
|||||||
"Make sure to sign and upload denomination and signing keys " +
|
"Make sure to sign and upload denomination and signing keys " +
|
||||||
"with taler-exchange-offline.",
|
"with taler-exchange-offline.",
|
||||||
);
|
);
|
||||||
|
if (!context.cont) {
|
||||||
|
console.log("Aborting further checks.");
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
const keys = await readSuccessResponseJsonOrThrow(
|
const keys = await readSuccessResponseJsonOrThrow(
|
||||||
resp,
|
resp,
|
||||||
codecForExchangeKeysJson(),
|
codecForExchangeKeysJson(),
|
||||||
@ -407,6 +418,33 @@ export async function checkExchangeHttpd(
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check /wire
|
||||||
|
{
|
||||||
|
const keysUrl = new URL("wire", baseUrl);
|
||||||
|
|
||||||
|
const resp = await Promise.race([httpLib.get(keysUrl.href), delayMs(2000)]);
|
||||||
|
|
||||||
|
if (!resp) {
|
||||||
|
console.log(
|
||||||
|
"error: request to /wire timed out. " +
|
||||||
|
"Make sure to sign and upload accounts and wire fees " +
|
||||||
|
"using the taler-exchange-offline tool.",
|
||||||
|
);
|
||||||
|
if (!context.cont) {
|
||||||
|
console.log("Aborting further checks.");
|
||||||
|
process.exit(1);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (resp.status !== 200) {
|
||||||
|
console.log(
|
||||||
|
"error: Can't access exchange /wire. Please check " +
|
||||||
|
"the logs of taler-exchange-httpd for further information.",
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user