Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/acceptance/serving_test.go')
-rw-r--r--test/acceptance/serving_test.go32
1 files changed, 1 insertions, 31 deletions
diff --git a/test/acceptance/serving_test.go b/test/acceptance/serving_test.go
index fb73e03e..77f8118e 100644
--- a/test/acceptance/serving_test.go
+++ b/test/acceptance/serving_test.go
@@ -387,7 +387,6 @@ func TestDomainsSource(t *testing.T) {
configSource string
domain string
urlSuffix string
- readyCount int
}
type want struct {
statusCode int
@@ -459,41 +458,12 @@ func TestDomainsSource(t *testing.T) {
apiCalled: false,
},
},
- {
- name: "auto_source_gitlab_is_not_ready",
- args: args{
- configSource: "auto",
- domain: "test.domain.com",
- urlSuffix: "/",
- readyCount: 100, // big number to ensure the API is in bad state for a while
- },
- want: want{
- statusCode: http.StatusOK,
- content: "main-dir\n",
- apiCalled: false,
- },
- },
- {
- name: "auto_source_gitlab_is_ready",
- args: args{
- configSource: "auto",
- domain: "new-source-test.gitlab.io",
- urlSuffix: "/my/pages/project/",
- readyCount: 0,
- },
- want: want{
- statusCode: http.StatusOK,
- content: "New Pages GitLab Source TEST OK\n",
- apiCalled: true,
- },
- },
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
opts := &stubOpts{
- apiCalled: false,
- statusReadyCount: tt.args.readyCount,
+ apiCalled: false,
}
source := NewGitlabDomainsSourceStub(t, opts)