Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX: Integration Tests #2166

Merged
merged 1 commit into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions launcher/src/backend/tests/integration/BesuService.int.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ test("besu installation", async () => {
/Websocket service started/.test(status.stdout) &&
/EngineJsonRpcService \| JSON-RPC service started/.test(status.stdout) &&
/JsonRpcHttpService \| JSON-RPC service started/.test(status.stdout) &&
/MetricsHttpService \| Metrics service started/.test(status.stdout) &&
/MetricsHttpService \| Starting metrics/.test(status.stdout) &&
/P2P RLPx agent started/.test(status.stdout) &&
/Starting peer discovery agent/.test(status.stdout) &&
/Starting sync/.test(status.stdout)
Expand Down Expand Up @@ -105,7 +105,7 @@ test("besu installation", async () => {
expect(status.stdout).toMatch(/Websocket service started/);
expect(status.stdout).toMatch(/EngineJsonRpcService \| JSON-RPC service started/);
expect(status.stdout).toMatch(/JsonRpcHttpService \| JSON-RPC service started/);
expect(status.stdout).toMatch(/MetricsHttpService \| Metrics service started/);
expect(status.stdout).toMatch(/MetricsHttpService \| Starting metrics/);
expect(status.stdout).toMatch(/P2P RLPx agent started/);
expect(status.stdout).toMatch(/Starting peer discovery agent/);
expect(status.stdout).toMatch(/Starting sync/);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ test("lighthouse validator import", async () => {
/Starting validator client/.test(VCstatus.stderr) &&
/Metrics HTTP server started/.test(VCstatus.stderr) &&
/Successfully loaded graffiti file/.test(VCstatus.stderr) &&
/Connected to beacon node/.test(VCstatus.stderr) &&
/Initialized beacon node connections/.test(VCstatus.stderr) &&
/HTTP API started/.test(VCstatus.stderr) &&
/Importing keystores via standard HTTP API, count: 3/.test(VCstatus.stderr) &&
/Imported keystores via standard HTTP API, count: 3/.test(VCstatus.stderr) &&
/Enabled validator/.test(VCstatus.stderr)
) {
condition = true;
Expand Down Expand Up @@ -166,8 +166,8 @@ test("lighthouse validator import", async () => {
expect(VCstatus.stderr).toMatch(/Starting validator client/);
expect(VCstatus.stderr).toMatch(/Metrics HTTP server started/);
expect(VCstatus.stderr).toMatch(/Successfully loaded graffiti file/);
expect(VCstatus.stderr).toMatch(/Connected to beacon node/);
expect(VCstatus.stderr).toMatch(/Initialized beacon node connections/);
expect(VCstatus.stderr).toMatch(/HTTP API started/);
expect(VCstatus.stderr).toMatch(/Importing keystores via standard HTTP API, count: 3/);
expect(VCstatus.stderr).toMatch(/Imported keystores via standard HTTP API, count: 3/);
expect(VCstatus.stderr).toMatch(/Enabled validator/);
});
Loading