Skip to content

Commit a3f8037

Browse files
committed
feat: Added solo mirror node exposed port 5600 and enabled tests
Signed-off-by: gsstoykov <georgi.stoykov@limechain.tech>
1 parent 8c1f2a1 commit a3f8037

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/zxc-build-library.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ jobs:
180180
solo mirror-node deploy -n "${SOLO_NAMESPACE}" --pinger true
181181
kubectl port-forward $(cut -d' ' -f1 <<<$(kubectl get pods -n solo-e2e | grep mirror-rest-)) 5551:5551 -n solo-e2e &
182182
kubectl port-forward $(cut -d' ' -f1 <<<$(kubectl get pods -n solo-e2e | grep mirror-web)) 8545:8545 -n solo-e2e &
183+
kubectl port-forward $(cut -d' ' -f1 <<<$(kubectl get pods -n solo-e2e | grep mirror-grpc)) 5600:5600 -n solo-e2e &
183184
184185
- name: Start CTest suite (Debug)
185186
run: ${{ steps.cgroup.outputs.exec }} ctest -j 6 -C Debug --test-dir build/${{ matrix.preset }}-debug --output-on-failure

src/sdk/tests/integration/AddressBookQueryIntegrationTests.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class AddressBookQueryIntegrationTests : public BaseIntegrationTest
1313
};
1414

1515
//-----
16-
TEST_F(AddressBookQueryIntegrationTests, DISABLED_ExecuteAddressBookQuery)
16+
TEST_F(AddressBookQueryIntegrationTests, ExecuteAddressBookQuery)
1717
{
1818
// Given / When / Then
1919
EXPECT_NO_THROW(const NodeAddressBook nodeAddressBook =

src/sdk/tests/integration/TopicMessageQueryIntegrationTests.cc

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ class TopicMessageQueryIntegrationTests : public BaseIntegrationTest
2222
};
2323

2424
//-----
25-
// Disabled until Solo triage
26-
TEST_F(TopicMessageQueryIntegrationTests, DISABLED_ExecuteTopicMessageQuery)
25+
TEST_F(TopicMessageQueryIntegrationTests, ExecuteTopicMessageQuery)
2726
{
2827
// Given
2928
const std::string topicMessage = "Hello from HCS!";
@@ -80,8 +79,7 @@ TEST_F(TopicMessageQueryIntegrationTests, DISABLED_ExecuteTopicMessageQuery)
8079
}
8180

8281
//-----
83-
// Disabled until Solo triage
84-
TEST_F(TopicMessageQueryIntegrationTests, DISABLED_CanReceiveLargeTopicMessage)
82+
TEST_F(TopicMessageQueryIntegrationTests, CanReceiveLargeTopicMessage)
8583
{
8684
// Given
8785
const std::string topicMessage =

0 commit comments

Comments
 (0)