@@ -24,13 +24,50 @@ describe('getServerUrl tests', () => {
24
24
} )
25
25
26
26
describe ( 'isGhes tests' , ( ) => {
27
+ const pristineEnv = process . env
28
+
29
+ beforeEach ( ( ) => {
30
+ jest . resetModules ( )
31
+ process . env = { ...pristineEnv }
32
+ } )
33
+
34
+ afterAll ( ( ) => {
35
+ process . env = pristineEnv
36
+ } )
37
+
27
38
it ( 'basics' , async ( ) => {
39
+ delete process . env [ 'GITHUB_SERVER_URL' ]
28
40
expect ( urlHelper . isGhes ( ) ) . toBeFalsy ( )
29
41
expect ( urlHelper . isGhes ( 'https://github.com' ) ) . toBeFalsy ( )
30
42
expect ( urlHelper . isGhes ( 'https://contoso.ghe.com' ) ) . toBeFalsy ( )
31
43
expect ( urlHelper . isGhes ( 'https://test.github.localhost' ) ) . toBeFalsy ( )
32
44
expect ( urlHelper . isGhes ( 'https://src.onpremise.fabrikam.com' ) ) . toBeTruthy ( )
33
45
} )
46
+
47
+ it ( 'returns false when the GITHUB_SERVER_URL environment variable is not defined' , async ( ) => {
48
+ delete process . env [ 'GITHUB_SERVER_URL' ]
49
+ expect ( urlHelper . isGhes ( ) ) . toBeFalsy ( )
50
+ } )
51
+
52
+ it ( 'returns false when the GITHUB_SERVER_URL environment variable is set to github.com' , async ( ) => {
53
+ process . env [ 'GITHUB_SERVER_URL' ] = 'https://github.com'
54
+ expect ( urlHelper . isGhes ( ) ) . toBeFalsy ( )
55
+ } )
56
+
57
+ it ( 'returns false when the GITHUB_SERVER_URL environment variable is set to a GitHub Enterprise Cloud-style URL' , async ( ) => {
58
+ process . env [ 'GITHUB_SERVER_URL' ] = 'https://contoso.ghe.com'
59
+ expect ( urlHelper . isGhes ( ) ) . toBeFalsy ( )
60
+ } )
61
+
62
+ it ( 'returns false when the GITHUB_SERVER_URL environment variable has a .localhost suffix' , async ( ) => {
63
+ process . env [ 'GITHUB_SERVER_URL' ] = 'https://mock-github.localhost'
64
+ expect ( urlHelper . isGhes ( ) ) . toBeFalsy ( )
65
+ } )
66
+
67
+ it ( 'returns true when the GITHUB_SERVER_URL environment variable is set to some other URL' , async ( ) => {
68
+ process . env [ 'GITHUB_SERVER_URL' ] = 'https://src.onpremise.fabrikam.com'
69
+ expect ( urlHelper . isGhes ( ) ) . toBeTruthy ( )
70
+ } )
34
71
} )
35
72
36
73
describe ( 'getServerApiUrl tests' , ( ) => {
0 commit comments