Skip to content

Commit

Permalink
Revert "Run docker fake intake test with new version of the fakeintak…
Browse files Browse the repository at this point in the history
…e if mod…"

This reverts commit c8cc3d6.
  • Loading branch information
KevinFairise2 authored Apr 11, 2024
1 parent 4b129b1 commit d7f482b
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 47 deletions.
47 changes: 16 additions & 31 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ stages:
- pkg_metrics
- packaging
- kitchen_deploy
- e2e_pre_test
- kitchen_testing
- container_build
- container_scan
Expand All @@ -91,7 +92,6 @@ stages:
- choco_deploy
- internal_image_deploy
- install_script_testing
- e2e_pre_test
- e2e
- kitchen_cleanup
- functional_test
Expand Down Expand Up @@ -359,15 +359,6 @@ variables:
.if_mergequeue: &if_mergequeue
if: $CI_COMMIT_BRANCH =~ /^mq-working-branch-/

.fakeintake_changes: &fakeintake_changes
changes:
paths:
- "test/fakeintake/**/*"
- .gitlab/binary_build/fakeintake.yml
- .gitlab/container_build/fakeintake.yml
- .gitlab/dev_container_deploy/fakeintake.yml
compare_to: main # TODO: use a variable, when this is supported https://gitlab.com/gitlab-org/gitlab/-/issues/369916

#
# Workflow rules
# Rules used to define whether a pipeline should run, and with which variables
Expand Down Expand Up @@ -773,23 +764,6 @@ workflow:

# New E2E related rules

.on_e2e_or_fakeintake_changes_or_manual:
- <<: *if_main_branch
- !reference [.except_mergequeue]
- <<: *fakeintake_changes
variables:
FAKEINTAKE_IMAGE_OVERRIDE: "public.ecr.aws/datadog/fakeintake:v$CI_COMMIT_SHORT_SHA"
when: on_success
- changes:
paths:
- test/new-e2e/pkg/**/*
- test/new-e2e/test-infra-definition/*
- test/new-e2e/go.mod
compare_to: main # TODO: use a variable, when this is supported https://gitlab.com/gitlab-org/gitlab/-/issues/369916
when: on_success
- when: manual
allow_failure: true


.on_e2e_main_release_or_rc: # This rule is used as a base for all new-e2e rules
- <<: *if_disable_e2e_tests
Expand Down Expand Up @@ -1020,12 +994,23 @@ workflow:
- .go-version
compare_to: main # TODO: use a variable, when this is supported https://gitlab.com/gitlab-org/gitlab/-/issues/369916

.on_fakeintake_changes:
- <<: *fakeintake_changes
.on_fakeintake_changes: &on_fakeintake_changes
changes:
- "test/fakeintake/**/*"
- .gitlab/binary_build/fakeintake.yml
- .gitlab/container_build/fakeintake.yml
- .gitlab/dev_container_deploy/fakeintake.yml

.on_fakeintake_changes_on_main_or_manual:
- <<: *on_fakeintake_changes
if: $CI_COMMIT_BRANCH == "main"
- <<: *on_fakeintake_changes
when: manual
allow_failure: true

.on_fakeintake_changes_on_main:
- <<: *fakeintake_changes
- <<: *if_main_branch
- <<: *on_fakeintake_changes
if: $CI_COMMIT_BRANCH == "main"

.fast_on_dev_branch_only:
- <<: *if_main_branch
Expand Down
4 changes: 2 additions & 2 deletions .gitlab/dev_container_deploy/fakeintake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ publish_fakeintake:
stage: dev_container_deploy
rules:
- !reference [.except_mergequeue]
- !reference [.on_fakeintake_changes]
- !reference [.on_fakeintake_changes_on_main_or_manual]
needs:
- job: docker_build_fakeintake
optional: false
Expand All @@ -27,4 +27,4 @@ publish_fakeintake_latest:
IMG_SOURCES: 486234852809.dkr.ecr.us-east-1.amazonaws.com/ci/datadog-agent/fakeintake:v${CI_PIPELINE_ID}-${CI_COMMIT_SHORT_SHA}
IMG_DESTINATIONS: fakeintake:latest
IMG_REGISTRIES: public
IMG_SIGNING: "false"
IMG_SIGNING: "false"
6 changes: 2 additions & 4 deletions .gitlab/e2e_pre_test/e2e_pre_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@
# Contains jobs which runs e2e tests to validate the new-e2e framework.
e2e_pre_test:
rules:
- !reference [.on_e2e_or_fakeintake_changes_or_manual]
- !reference [.on_e2e_changes_or_manual]
stage: e2e_pre_test
extends: .new_e2e_template
needs:
- job: publish_fakeintake
optional: true
needs: []
script:
- inv -e new-e2e-tests.run --targets ./test-infra-definition --junit-tar junit-${CI_JOB_ID}.tgz ${EXTRA_PARAMS}
after_script:
Expand Down
11 changes: 1 addition & 10 deletions test/new-e2e/test-infra-definition/docker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ package testinfradefinition

import (
"fmt"
"os"
"regexp"
"testing"
"time"
Expand All @@ -16,7 +15,6 @@ import (
"github.com/DataDog/datadog-agent/test/new-e2e/pkg/environments"
awsdocker "github.com/DataDog/datadog-agent/test/new-e2e/pkg/environments/aws/docker"
"github.com/DataDog/datadog-agent/test/new-e2e/pkg/utils/e2e/client/agentclient"
"github.com/DataDog/test-infra-definitions/scenarios/aws/fakeintake"
"github.com/stretchr/testify/assert"
)

Expand All @@ -25,14 +23,7 @@ type dockerSuite struct {
}

func TestDocker(t *testing.T) {
var fakeintakeOpts []fakeintake.Option

// When we modify the fakeintake, this test will run with the new version of the fakeintake
if fakeintakeImage, ok := os.LookupEnv("FAKEINTAKE_IMAGE_OVERRIDE"); ok {
t.Logf("Running with fakeintake image %s", fakeintakeImage)
fakeintakeOpts = append(fakeintakeOpts, fakeintake.WithImageURL(fakeintakeImage))
}
e2e.Run(t, &dockerSuite{}, e2e.WithProvisioner(awsdocker.Provisioner(awsdocker.WithFakeIntakeOptions(fakeintakeOpts...))))
e2e.Run(t, &dockerSuite{}, e2e.WithProvisioner(awsdocker.Provisioner()))
}

func (v *dockerSuite) TestExecuteCommand() {
Expand Down

0 comments on commit d7f482b

Please sign in to comment.