Skip to content

Commit

Permalink
test: jestify get-single-status-endpoint-invalid test
Browse files Browse the repository at this point in the history
Migrated test from Tap to Jest.

File Path:
packages/cactus-test-plugin-htlc-eth-besu/src/
test/typescript/integration/plugin-htlc-eth-besu/
get-single-status-endpoint-invalid.test.ts

This is a PARTIAL resolution to issue hyperledger#238

Signed-off-by: awadhana <awadhana0825@gmail.com>
Signed-off-by: aldousalvarez <aldousss.alvarez@gmail.com>
  • Loading branch information
awadhana authored and aldousalvarez committed Jan 19, 2022
1 parent 4fcccfb commit f63e2a2
Show file tree
Hide file tree
Showing 3 changed files with 154 additions and 168 deletions.
1 change: 0 additions & 1 deletion .taprc
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ files:
- ./packages/cactus-test-plugin-htlc-eth-besu/src/test/typescript/integration/plugin-htlc-eth-besu/get-status-endpoint.test.ts
- ./packages/cactus-test-plugin-htlc-eth-besu/src/test/typescript/integration/plugin-htlc-eth-besu/new-contract-endpoint-invalid.test.ts
- ./packages/cactus-test-plugin-htlc-eth-besu/src/test/typescript/integration/plugin-htlc-eth-besu/get-single-status-endpoint.test.ts
- ./packages/cactus-test-plugin-htlc-eth-besu/src/test/typescript/integration/plugin-htlc-eth-besu/get-single-status-endpoint-invalid.test.ts
- ./packages/cactus-test-plugin-htlc-eth-besu/src/test/typescript/integration/plugin-htlc-eth-besu/withdraw-endpoint-invalid.test.ts
- ./packages/cactus-test-plugin-htlc-eth-besu/src/test/typescript/integration/plugin-htlc-eth-besu/openapi/openapi-validation.test.ts
- ./packages/cactus-test-plugin-htlc-eth-besu/src/test/typescript/integration/plugin-htlc-eth-besu/refund-endpoint.test.ts
Expand Down
2 changes: 1 addition & 1 deletion jest.config.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import http from "http";
import type { AddressInfo } from "net";
import test, { Test } from "tape-promise/tape";
import "jest-extended";
import { v4 as uuidv4 } from "uuid";
import express from "express";
import bodyParser from "body-parser";
Expand Down Expand Up @@ -39,186 +39,173 @@ const connectorId = uuidv4();
const logLevel: LogLevelDesc = "INFO";
const testCase = "Test get invalid single status";

test("BEFORE " + testCase, async (t: Test) => {
const pruning = pruneDockerAllIfGithubAction({ logLevel });
await t.doesNotReject(pruning, "Pruning did not throw OK");
t.end();
});

test(testCase, async (t: Test) => {
t.comment("Starting Besu Test Ledger");
describe(testCase, () => {
const besuTestLedger = new BesuTestLedger({ logLevel });

test.onFinish(async () => {
const expressApp = express();
expressApp.use(bodyParser.json({ limit: "250mb" }));
const server = http.createServer(expressApp);
const listenOptions: IListenOptions = {
hostname: "0.0.0.0",
port: 0,
server,
};

beforeAll(async () => {
const pruning = pruneDockerAllIfGithubAction({ logLevel });
await expect(pruning).resolves.toBeTruthy();
});

afterAll(async () => await Servers.shutdown(server));

afterAll(async () => {
await besuTestLedger.stop();
await besuTestLedger.destroy();
await pruneDockerAllIfGithubAction({ logLevel });
});

await besuTestLedger.start();

const rpcApiHttpHost = await besuTestLedger.getRpcApiHttpHost();
const rpcApiWsHost = await besuTestLedger.getRpcApiWsHost();
const firstHighNetWorthAccount = besuTestLedger.getGenesisAccountPubKey();
const privateKey = besuTestLedger.getGenesisAccountPrivKey();
const web3SigningCredential: Web3SigningCredential = {
ethAccount: firstHighNetWorthAccount,
secret: privateKey,
type: Web3SigningCredentialType.PrivateKeyHex,
} as Web3SigningCredential;

const fakeWeb3SigningCredential: Web3SigningCredential = {
ethAccount: "fakeAccount",
secret: privateKey,
type: Web3SigningCredentialType.PrivateKeyHex,
} as Web3SigningCredential;
const keychainId = uuidv4();
const keychainPlugin = new PluginKeychainMemory({
instanceId: uuidv4(),
keychainId,
// pre-provision keychain with mock backend holding the private key of the
// test account that we'll reference while sending requests with the
// signing credential pointing to this keychain entry.
backend: new Map([
[DemoHelperJSON.contractName, JSON.stringify(DemoHelperJSON)],
]),
logLevel,
afterAll(async () => {
const pruning = pruneDockerAllIfGithubAction({ logLevel });
await expect(pruning).resolves.toBeTruthy();
});
keychainPlugin.set(
HashTimeLockJson.contractName,
JSON.stringify(HashTimeLockJson),
);

const factory = new PluginFactoryLedgerConnector({
pluginImportType: PluginImportType.Local,
beforeAll(async () => {
await besuTestLedger.start();
});

const pluginRegistry = new PluginRegistry({});
const connector: PluginLedgerConnectorBesu = await factory.create({
rpcApiHttpHost,
rpcApiWsHost,
logLevel,
instanceId: connectorId,
pluginRegistry: new PluginRegistry({ plugins: [keychainPlugin] }),
});
test(testCase, async () => {
const rpcApiHttpHost = await besuTestLedger.getRpcApiHttpHost();
const rpcApiWsHost = await besuTestLedger.getRpcApiWsHost();
const firstHighNetWorthAccount = besuTestLedger.getGenesisAccountPubKey();
const privateKey = besuTestLedger.getGenesisAccountPrivKey();
const web3SigningCredential: Web3SigningCredential = {
ethAccount: firstHighNetWorthAccount,
secret: privateKey,
type: Web3SigningCredentialType.PrivateKeyHex,
} as Web3SigningCredential;

const fakeWeb3SigningCredential: Web3SigningCredential = {
ethAccount: "fakeAccount",
secret: privateKey,
type: Web3SigningCredentialType.PrivateKeyHex,
} as Web3SigningCredential;
const keychainId = uuidv4();
const keychainPlugin = new PluginKeychainMemory({
instanceId: uuidv4(),
keychainId,
// pre-provision keychain with mock backend holding the private key of the
// test account that we'll reference while sending requests with the
// signing credential pointing to this keychain entry.
backend: new Map([
[DemoHelperJSON.contractName, JSON.stringify(DemoHelperJSON)],
]),
logLevel,
});
keychainPlugin.set(
HashTimeLockJson.contractName,
JSON.stringify(HashTimeLockJson),
);

pluginRegistry.add(connector);
const pluginOptions: IPluginHtlcEthBesuOptions = {
logLevel,
instanceId: uuidv4(),
pluginRegistry,
};
const factory = new PluginFactoryLedgerConnector({
pluginImportType: PluginImportType.Local,
});

const factoryHTLC = new PluginFactoryHtlcEthBesu({
pluginImportType: PluginImportType.Local,
});
const pluginRegistry = new PluginRegistry({});
const connector: PluginLedgerConnectorBesu = await factory.create({
rpcApiHttpHost,
rpcApiWsHost,
logLevel,
instanceId: connectorId,
pluginRegistry: new PluginRegistry({ plugins: [keychainPlugin] }),
});

const pluginHtlc = await factoryHTLC.create(pluginOptions);
pluginRegistry.add(pluginHtlc);
pluginRegistry.add(connector);
const pluginOptions: IPluginHtlcEthBesuOptions = {
logLevel,
instanceId: uuidv4(),
pluginRegistry,
};

const expressApp = express();
expressApp.use(bodyParser.json({ limit: "250mb" }));
const server = http.createServer(expressApp);
const listenOptions: IListenOptions = {
hostname: "0.0.0.0",
port: 0,
server,
};
const addressInfo = (await Servers.listen(listenOptions)) as AddressInfo;
test.onFinish(async () => await Servers.shutdown(server));
const { address, port } = addressInfo;
const apiHost = `http://${address}:${port}`;

const configuration = new Configuration({ basePath: apiHost });
const api = new BesuApi(configuration);

await pluginHtlc.getOrCreateWebServices();
await pluginHtlc.registerWebServices(expressApp);

const web3 = new Web3(rpcApiHttpHost);

t.comment("Deploys HashTimeLock via .json file on initialize function");
const initRequest: InitializeRequest = {
connectorId,
keychainId,
constructorArgs: [],
web3SigningCredential,
gas: DataTest.estimated_gas,
};
const deployOut = await pluginHtlc.initialize(initRequest);
t.ok(
deployOut.transactionReceipt,
"pluginHtlc.initialize() output.transactionReceipt is truthy OK",
);
t.ok(
deployOut.transactionReceipt.contractAddress,
"pluginHtlc.initialize() output.transactionReceipt.contractAddress is truthy OK",
);
const hashTimeLockAddress = deployOut.transactionReceipt
.contractAddress as string;

//Deploy DemoHelpers
t.comment("Deploys DemoHelpers via .json file on deployContract function");
const deployOutDemo = await connector.deployContract({
contractName: DemoHelperJSON.contractName,
contractAbi: DemoHelperJSON.abi,
bytecode: DemoHelperJSON.bytecode,
web3SigningCredential,
keychainId,
constructorArgs: [],
gas: DataTest.estimated_gas,
});
t.ok(deployOutDemo, "deployContract() output is truthy OK");
t.ok(
deployOutDemo.transactionReceipt,
"deployContract() output.transactionReceipt is truthy OK",
);
t.ok(
deployOutDemo.transactionReceipt.contractAddress,
"deployContract() output.transactionReceipt.contractAddress is truthy OK",
);

t.comment("Get account balance");
const balance = await web3.eth.getBalance(firstHighNetWorthAccount);

t.comment("Create new contract for HTLC");
const bodyObj: NewContractObj = {
contractAddress: hashTimeLockAddress,
inputAmount: 10,
outputAmount: 0x04,
expiration: DataTest.expiration,
hashLock: DataTest.hashLock,
receiver: DataTest.receiver,
outputNetwork: "BTC",
outputAddress: "1AcVYm7M3kkJQH28FXAvyBFQzFRL6xPKu8",
connectorId: connectorId,
web3SigningCredential,
keychainId,
gas: DataTest.estimated_gas,
};
const resp = await api.newContractV1(bodyObj);
t.ok(resp, "response newContract is OK");
t.equal(resp.status, 200, "response status newContract is OK");

t.comment("Get single status of HTLC");
const balance2 = await web3.eth.getBalance(firstHighNetWorthAccount);

t.equal(
parseInt(balance),
parseInt(balance2) - 10,
"Balance of account is OK",
);
try {
const fakeId = "0x66616b654964";
const res = await api.getSingleStatusV1({
id: fakeId,
web3SigningCredential: fakeWeb3SigningCredential,
const factoryHTLC = new PluginFactoryHtlcEthBesu({
pluginImportType: PluginImportType.Local,
});

const pluginHtlc = await factoryHTLC.create(pluginOptions);
pluginRegistry.add(pluginHtlc);

const addressInfo = (await Servers.listen(listenOptions)) as AddressInfo;
const { address, port } = addressInfo;
const apiHost = `http://${address}:${port}`;

const configuration = new Configuration({ basePath: apiHost });
const api = new BesuApi(configuration);

await pluginHtlc.getOrCreateWebServices();
await pluginHtlc.registerWebServices(expressApp);

const web3 = new Web3(rpcApiHttpHost);

const initRequest: InitializeRequest = {
connectorId,
keychainId: "",
keychainId,
constructorArgs: [],
web3SigningCredential,
gas: DataTest.estimated_gas,
};
const deployOut = await pluginHtlc.initialize(initRequest);
expect(deployOut.transactionReceipt).toBeTruthy();
expect(deployOut.transactionReceipt.contractAddress).toBeTruthy();
const hashTimeLockAddress = deployOut.transactionReceipt
.contractAddress as string;

//Deploy DemoHelpers
const deployOutDemo = await connector.deployContract({
contractName: DemoHelperJSON.contractName,
contractAbi: DemoHelperJSON.abi,
bytecode: DemoHelperJSON.bytecode,
web3SigningCredential,
keychainId,
constructorArgs: [],
gas: DataTest.estimated_gas,
});
t.equal(res.status, 500, "response status is 500");
} catch (e) {
t.equal(e.response.status, 500);
}
t.end();
expect(deployOutDemo).toBeTruthy();
expect(deployOutDemo.transactionReceipt).toBeTruthy();
expect(deployOutDemo.transactionReceipt.contractAddress).toBeTruthy();

const balance = await web3.eth.getBalance(firstHighNetWorthAccount);

const bodyObj: NewContractObj = {
contractAddress: hashTimeLockAddress,
inputAmount: 10,
outputAmount: 0x04,
expiration: DataTest.expiration,
hashLock: DataTest.hashLock,
receiver: DataTest.receiver,
outputNetwork: "BTC",
outputAddress: "1AcVYm7M3kkJQH28FXAvyBFQzFRL6xPKu8",
connectorId: connectorId,
web3SigningCredential,
keychainId,
gas: DataTest.estimated_gas,
};
const resp = await api.newContractV1(bodyObj);
expect(resp).toBeTruthy();
expect(resp.status).toEqual(200);

const balance2 = await web3.eth.getBalance(firstHighNetWorthAccount);

expect(parseInt(balance)).toEqual(parseInt(balance2) - 10);
try {
const fakeId = "0x66616b654964";
const res = await api.getSingleStatusV1({
id: fakeId,
web3SigningCredential: fakeWeb3SigningCredential,
connectorId,
keychainId: "",
});
expect(res.status).toEqual(500);
} catch (e: any) {
expect(e.response.status).toEqual(500);
}
});
});

0 comments on commit f63e2a2

Please sign in to comment.