Skip to content

Commit

Permalink
chore: add some logging
Browse files Browse the repository at this point in the history
  • Loading branch information
ansgarschulte committed May 7, 2024
1 parent 26f58ee commit 4ff63af
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 64 deletions.
126 changes: 63 additions & 63 deletions e2e/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,73 +83,73 @@ func TestWithMinikube(t *testing.T) {
}

e2e.WithMinikube(t, getMinikubeOptions(), &extFactory, []e2e.WithMinikubeTestCase{
{
Name: "validate discovery",
Test: validateDiscovery,
},
{
Name: "target discovery",
Test: testDiscovery,
},
{
Name: "stress cpu",
Test: testStressCpu,
},
{
Name: "stress memory",
Test: testStressMemory,
}, {
Name: "stress io",
Test: testStressIo,
},
{
Name: "stress combine cpu and memory on same container",
Test: testStressCombined,
},
{
Name: "time travel",
Test: testTimeTravel,
},
{
Name: "stop process",
Test: testStopProcess,
},
//{
// Name: "validate discovery",
// Test: validateDiscovery,
//},
//{
// Name: "target discovery",
// Test: testDiscovery,
//},
//{
// Name: "stress cpu",
// Test: testStressCpu,
//},
//{
// Name: "stress memory",
// Test: testStressMemory,
//}, {
// Name: "stress io",
// Test: testStressIo,
//},
//{
// Name: "stress combine cpu and memory on same container",
// Test: testStressCombined,
//},
//{
// Name: "time travel",
// Test: testTimeTravel,
//},
//{
// Name: "stop process",
// Test: testStopProcess,
//},
{
Name: "network delay",
Test: testNetworkDelay,
},
{
Name: "network blackhole",
Test: testNetworkBlackhole,
},
{
Name: "network block dns",
Test: testNetworkBlockDns,
},
{
Name: "network limit bandwidth",
Test: testNetworkLimitBandwidth,
},
{
Name: "network package loss",
Test: testNetworkPackageLoss,
},
{
Name: "network package corruption",
Test: testNetworkPackageCorruption,
},
{
Name: "network delay and bandwidth on the same container should error",
Test: testNetworkDelayAndBandwidthOnSameContainer,
},
{
Name: "fill disk",
Test: testFillDisk,
},
{
Name: "shutdown host",
Test: testShutdownHost, // if you run this test locally, you will need to restart your docker machine
},
//{
// Name: "network blackhole",
// Test: testNetworkBlackhole,
//},
//{
// Name: "network block dns",
// Test: testNetworkBlockDns,
//},
//{
// Name: "network limit bandwidth",
// Test: testNetworkLimitBandwidth,
//},
//{
// Name: "network package loss",
// Test: testNetworkPackageLoss,
//},
//{
// Name: "network package corruption",
// Test: testNetworkPackageCorruption,
//},
//{
// Name: "network delay and bandwidth on the same container should error",
// Test: testNetworkDelayAndBandwidthOnSameContainer,
//},
//{
// Name: "fill disk",
// Test: testFillDisk,
//},
//{
// Name: "shutdown host",
// Test: testShutdownHost, // if you run this test locally, you will need to restart your docker machine
//},
})
}

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ require (
github.com/steadybit/action-kit/go/action_kit_api/v2 v2.9.0
github.com/steadybit/action-kit/go/action_kit_commons v1.1.9
github.com/steadybit/action-kit/go/action_kit_sdk v1.1.9
github.com/steadybit/action-kit/go/action_kit_test v1.2.12-0.20240506215610-bd46129ac5e6
github.com/steadybit/action-kit/go/action_kit_test c1078fa8a3fb0bb5bd101b4d08c721f9f8a860c1
github.com/steadybit/discovery-kit/go/discovery_kit_api v1.5.2
github.com/steadybit/discovery-kit/go/discovery_kit_commons v0.1.0
github.com/steadybit/discovery-kit/go/discovery_kit_sdk v1.0.6
Expand Down

0 comments on commit 4ff63af

Please sign in to comment.