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

domains_test.go « source « internal - gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1da50db8b69758224ee9f0a980e7ffd98cb2d58b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package source

import (
	"testing"

	"github.com/stretchr/testify/assert"
	"github.com/stretchr/testify/mock"

	"gitlab.com/gitlab-org/gitlab-pages/internal/domain"
	"gitlab.com/gitlab-org/gitlab-pages/internal/source/disk"
)

type mockSource struct {
	mock.Mock
}

func (m mockSource) GetDomain(name string) *domain.Domain {
	args := m.Called(name)

	return args.Get(0).(*domain.Domain)
}

func (m mockSource) HasDomain(name string) bool {
	args := m.Called(name)

	return args.Bool(0)
}

func TestSourceTransition(t *testing.T) {
	testDomain := newSourceDomains[0]

	t.Run("when requesting a test domain", func(t *testing.T) {
		newSource := new(mockSource)
		newSource.On("GetDomain", testDomain).
			Return(&domain.Domain{Name: testDomain}).
			Once()
		newSource.On("HasDomain", testDomain).Return(true).Once()
		defer newSource.AssertExpectations(t)

		domains := &Domains{
			disk:   disk.New(),
			gitlab: newSource,
		}

		domains.GetDomain(testDomain)
		domains.HasDomain(testDomain)
	})

	t.Run("when requesting a non-test domain", func(t *testing.T) {
		newSource := new(mockSource)
		defer newSource.AssertExpectations(t)

		domains := &Domains{
			disk:   disk.New(),
			gitlab: newSource,
		}

		assert.Nil(t, domains.GetDomain("some.test.io"))
		assert.False(t, domains.HasDomain("some.test.io"))
	})
}