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-test): Integration tests resolution PR #1263

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
7 changes: 7 additions & 0 deletions newrelic/newrelic_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ package newrelic

import (
"context"
"fmt"
"net/http"
"os"
"testing"
"time"

"github.com/elazarl/goproxy"

Expand All @@ -20,17 +22,22 @@ func TestNewRelic_TestEndpoints_withProxy(t *testing.T) {
defer os.Unsetenv("HTTPS_PROXY")

proxy := goproxy.NewProxyHttpServer()
time.Sleep(3 * time.Second)
fmt.Println("proxy", proxy)
srv := &http.Server{
Addr: "localhost:1337",
Handler: proxy,
}
fmt.Println("srv", srv)
defer srv.Shutdown(context.Background())

client, err := New(
ConfigPersonalAPIKey(os.Getenv("NEW_RELIC_API_KEY")),
ConfigRegion("US"),
ConfigLogLevel("DEBUG"),
)

fmt.Println("client", client)
require.NoError(t, err)
require.NotNil(t, client)

Expand Down
12 changes: 10 additions & 2 deletions pkg/accountmanagement/accountmanagement_integration_test.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package accountmanagement

import (
"fmt"
"log"
"testing"
"time"
Expand Down Expand Up @@ -83,14 +84,16 @@ func TestIntegrationAccountManagement_CreateUpdateCancelAccount(t *testing.T) {
require.NotNil(t, createAccountResponse.ManagedAccount.ID)
require.Equal(t, createAccountInput.RegionCode, createAccountResponse.ManagedAccount.RegionCode)
require.Equal(t, createAccountInput.Name, createAccountResponse.ManagedAccount.Name)
time.Sleep(time.Second * 2)
time.Sleep(time.Second * 3)

// Update Account
updateAccountInput := AccountManagementUpdateInput{
ID: createAccountResponse.ManagedAccount.ID,
Name: name + "-updated",
}
updateAccountResponse, err := accountManagementClient.AccountManagementUpdateAccount(updateAccountInput)
fmt.Println("updateAccountResponse", updateAccountResponse)
fmt.Println("err", err)

require.Nil(t, err)
require.NotNil(t, updateAccountResponse.ManagedAccount.ID)
Expand All @@ -100,7 +103,8 @@ func TestIntegrationAccountManagement_CreateUpdateCancelAccount(t *testing.T) {

// Get Account
getAccountResponse, err := accountManagementClient.GetManagedAccounts()

fmt.Println("getAccountResponse", getAccountResponse)
fmt.Println("err", err)
require.Nil(t, err)
require.NotNil(t, getAccountResponse)
foundAccountInGetResponse := false
Expand All @@ -113,6 +117,7 @@ func TestIntegrationAccountManagement_CreateUpdateCancelAccount(t *testing.T) {
}

require.True(t, foundAccountInGetResponse)
time.Sleep(time.Second * 3)

// Cancel Account
cancelAccountResponse, err := accountManagementClient.AccountManagementCancelAccount(createAccountResponse.ManagedAccount.ID)
Expand All @@ -125,6 +130,9 @@ func TestIntegrationAccountManagement_CreateUpdateCancelAccount(t *testing.T) {
isCancelled := true
getAccountResponse, err = accountManagementClient.GetManagedAccountsWithAdditionalArguments(&isCancelled)

fmt.Println("getAccountResponse for Cancel", getAccountResponse)
fmt.Println("err for Cancel", err)

require.Nil(t, err)
require.NotNil(t, getAccountResponse)
foundAccountInGetResponse = false
Expand Down
3 changes: 3 additions & 0 deletions pkg/cloud/cloud_api_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
package cloud

import (
"fmt"
"os"
"strings"
"testing"
Expand All @@ -17,6 +18,7 @@ func TestCloudAccount_Basic(t *testing.T) {
t.Parallel()

testAccountID, err := mock.GetTestAccountID()
fmt.Println("testAccountID", testAccountID)
if err != nil {
t.Skipf("%s", err)
}
Expand All @@ -30,6 +32,7 @@ func TestCloudAccount_Basic(t *testing.T) {
a := newIntegrationTestClient(t)
// Reset everything
getResponse, err := a.GetLinkedAccounts("aws")
fmt.Println("getResponse", getResponse)
require.NoError(t, err)

for _, linkedAccount := range *getResponse {
Expand Down
11 changes: 11 additions & 0 deletions pkg/keytransaction/keytransaction_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
package keytransaction

import (
"fmt"
"testing"
"time"

"github.com/stretchr/testify/require"

Expand All @@ -24,6 +26,9 @@ func TestIntegrationKeyTransaction_All(t *testing.T) {
testhelpers.IntegrationTestApplicationEntityNameNew,
testKeyTransactionName,
)
fmt.Println("createKeyTransactionTestResult", createKeyTransactionTestResult)
fmt.Println("err", err)
time.Sleep(3 * time.Second)

require.NoError(t, err)
require.NotNil(t, createKeyTransactionTestResult)
Expand All @@ -45,6 +50,9 @@ func TestIntegrationKeyTransaction_All(t *testing.T) {
createKeyTransactionTestResult.GUID,
testKeyTransactionName+"-updated",
)
time.Sleep(3 * time.Second)
fmt.Println("updateKeyTransactionTestResult", updateKeyTransactionTestResult)
fmt.Println("err", err)

require.NoError(t, err)
require.NotNil(t, updateKeyTransactionTestResult)
Expand All @@ -55,6 +63,9 @@ func TestIntegrationKeyTransaction_All(t *testing.T) {
// deleting the key transaction created
// this is expected to throw no error and delete the created key transaction
deletedResult, err := client.KeyTransactionDelete(createKeyTransactionTestResult.GUID)
time.Sleep(3 * time.Second)
fmt.Println("deletedResult", deletedResult)
fmt.Println("err", err)
require.NoError(t, err)
require.NotNil(t, deletedResult)
require.Equal(t, deletedResult.Success, true)
Expand Down
10 changes: 8 additions & 2 deletions pkg/servicelevel/service_level_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,13 @@ func TestServiceLevel_Basic(t *testing.T) {
require.NoError(t, err)
require.NotNil(t, createResp)

fmt.Println("waiting 5 seconds for entity to be indexed before validating its creation...")
time.Sleep(5 * time.Second)
fmt.Println("waiting 10 seconds for entity to be indexed before validating its creation...")
time.Sleep(10 * time.Second)

// Get
getResp, err := client.GetIndicators(createResp.GUID)
fmt.Println("getResp", getResp)
fmt.Println("err", err)
require.NoError(t, err)
require.NotNil(t, getResp)

Expand All @@ -84,11 +86,15 @@ func TestServiceLevel_Basic(t *testing.T) {
Description: "integration test service level updated",
}
updateResp, err := client.ServiceLevelUpdate(createResp.GUID, updateInput)
fmt.Println("updateResp", updateResp)
fmt.Println("err", err)
require.NoError(t, err)
require.NotNil(t, updateResp)

// Delete secure credential
deleteResp, err := client.ServiceLevelDelete(createResp.GUID)
fmt.Println("deleteResp", deleteResp)
fmt.Println("err", err)
require.NoError(t, err)
require.NotNil(t, deleteResp)
}
Expand Down
15 changes: 13 additions & 2 deletions pkg/synthetics/synthetics_api_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -546,6 +546,8 @@ func TestSyntheticsScriptApiMonitorLegacy_Basic(t *testing.T) {
}

createScriptApiMonitor, err := a.SyntheticsCreateScriptAPIMonitor(testAccountID, scriptApiMonitorInput)
time.Sleep(3 * time.Second)

require.NoError(t, err)
require.NotNil(t, createScriptApiMonitor)
require.Equal(t, 0, len(createScriptApiMonitor.Errors), createScriptApiMonitor.Errors)
Expand Down Expand Up @@ -967,11 +969,16 @@ func TestSyntheticsBrokenLinksMonitor_Basic(t *testing.T) {
Values: []string{"avocado"},
},
},
Uri: "https://www.google.com",
Runtime: &SyntheticsExtendedTypeMonitorRuntimeInput{},
Uri: "https://www.google.com",
Runtime: &SyntheticsExtendedTypeMonitorRuntimeInput{
RuntimeType: "NODE_API",
RuntimeTypeVersion: "16.10",
},
}

createdMonitor, err := a.SyntheticsCreateBrokenLinksMonitor(testAccountID, monitorInput)

fmt.Println("createdMonitor", createdMonitor)
require.NoError(t, err)
require.NotNil(t, createdMonitor)
require.Equal(t, 0, len(createdMonitor.Errors))
Expand Down Expand Up @@ -1276,6 +1283,10 @@ func TestSyntheticsStepMonitor_GetSteps(t *testing.T) {
Locations: SyntheticsScriptedMonitorLocationsInput{
Public: []string{"AP_SOUTH_1"},
},
Runtime: &SyntheticsExtendedTypeMonitorRuntimeInput{
RuntimeTypeVersion: "100",
RuntimeType: "CHROME_BROWSER",
},
Tags: []SyntheticsTag{
{
Key: "step",
Expand Down
6 changes: 6 additions & 0 deletions pkg/usermanagement/groups_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,9 @@ func TestIntegrationGroupManagementWithoutUsers(t *testing.T) {
}

client := newIntegrationTestClient(t)
fmt.Println("client", client)
err = UserManagementGroupCleanupForIntegrationTests(client, authenticationDomainId)
fmt.Println("err", err)
require.NoError(t, err)

displayName := fmt.Sprintf("%s-new", groupName)
Expand All @@ -116,6 +118,7 @@ func TestIntegrationGroupManagementWithoutUsers(t *testing.T) {
}

createGroupResponse, err := client.UserManagementCreateGroup(createGroupInput)
fmt.Println("createGroupResponse", createGroupResponse, err)

require.NoError(t, err)
require.NotNil(t, createGroupResponse.Group.ID)
Expand All @@ -128,6 +131,7 @@ func TestIntegrationGroupManagementWithoutUsers(t *testing.T) {
}

updateGroupResponse, err := client.UserManagementUpdateGroup(updateGroupInput)
fmt.Println("updateGroupResponse", updateGroupResponse, err)

require.NoError(t, err)
require.NotNil(t, updateGroupResponse.Group.ID)
Expand All @@ -148,6 +152,8 @@ func UserManagementGroupCleanupForIntegrationTests(client Usermanagement, authen
"",
)

fmt.Println("getGroupsResponse", getGroupsResponse, err)

if err != nil {
return err
}
Expand Down
Loading