|
| 1 | +import * as urlHelper from '../src/url-helper' |
| 2 | + |
| 3 | +describe('getServerUrl tests', () => { |
| 4 | + it('basics', async () => { |
| 5 | + // Note that URL::toString will append a trailing / when passed just a domain name ... |
| 6 | + expect(urlHelper.getServerUrl().toString()).toBe('https://github.com/') |
| 7 | + expect(urlHelper.getServerUrl(' ').toString()).toBe('https://github.com/') |
| 8 | + expect(urlHelper.getServerUrl(' ').toString()).toBe('https://github.com/') |
| 9 | + expect(urlHelper.getServerUrl('http://contoso.com').toString()).toBe( |
| 10 | + 'http://contoso.com/' |
| 11 | + ) |
| 12 | + expect(urlHelper.getServerUrl('https://contoso.com').toString()).toBe( |
| 13 | + 'https://contoso.com/' |
| 14 | + ) |
| 15 | + expect(urlHelper.getServerUrl('https://contoso.com/').toString()).toBe( |
| 16 | + 'https://contoso.com/' |
| 17 | + ) |
| 18 | + |
| 19 | + // ... but can't make that same assumption when passed an URL that includes some deeper path. |
| 20 | + expect(urlHelper.getServerUrl('https://contoso.com/a/b').toString()).toBe( |
| 21 | + 'https://contoso.com/a/b' |
| 22 | + ) |
| 23 | + }) |
| 24 | +}) |
| 25 | + |
| 26 | +describe('isGhes tests', () => { |
| 27 | + it('basics', async () => { |
| 28 | + expect(urlHelper.isGhes()).toBeFalsy() |
| 29 | + expect(urlHelper.isGhes('https://github.com')).toBeFalsy() |
| 30 | + expect(urlHelper.isGhes('https://contoso.ghe.com')).toBeFalsy() |
| 31 | + expect(urlHelper.isGhes('https://test.github.localhost')).toBeFalsy() |
| 32 | + expect(urlHelper.isGhes('https://src.onpremise.fabrikam.com')).toBeTruthy() |
| 33 | + }) |
| 34 | +}) |
| 35 | + |
| 36 | +describe('getServerApiUrl tests', () => { |
| 37 | + it('basics', async () => { |
| 38 | + expect(urlHelper.getServerApiUrl()).toBe('https://api.github.com') |
| 39 | + expect(urlHelper.getServerApiUrl('https://github.com')).toBe( |
| 40 | + 'https://api.github.com' |
| 41 | + ) |
| 42 | + expect(urlHelper.getServerApiUrl('https://GitHub.com')).toBe( |
| 43 | + 'https://api.github.com' |
| 44 | + ) |
| 45 | + expect(urlHelper.getServerApiUrl('https://contoso.ghe.com')).toBe( |
| 46 | + 'https://api.contoso.ghe.com' |
| 47 | + ) |
| 48 | + expect(urlHelper.getServerApiUrl('https://fabrikam.GHE.COM')).toBe( |
| 49 | + 'https://api.fabrikam.ghe.com' |
| 50 | + ) |
| 51 | + expect( |
| 52 | + urlHelper.getServerApiUrl('https://src.onpremise.fabrikam.com') |
| 53 | + ).toBe('https://src.onpremise.fabrikam.com/api/v3') |
| 54 | + }) |
| 55 | +}) |
0 commit comments