forked from apache/devlake
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauth.test.ts
More file actions
144 lines (121 loc) · 5.98 KB
/
Copy pathauth.test.ts
File metadata and controls
144 lines (121 loc) · 5.98 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
import { describe, it, expect } from 'vitest';
// ---------------------------------------------------------------------------
// Regex constants (mirror exactly what auth.tsx defines)
// ---------------------------------------------------------------------------
const JIRA_CLOUD_REGEX = /^https:\/\/\w+\.atlassian\.net\/rest\/$/;
const JIRA_GATEWAY_REGEX = /^https:\/\/api\.atlassian\.com\/ex\/jira\/[^/]+\/rest\/$/;
// ---------------------------------------------------------------------------
// Endpoint builder (mirrors handleChangeCloudId in auth.tsx)
// ---------------------------------------------------------------------------
function buildGatewayEndpoint(cloudId: string): string {
return cloudId ? `https://api.atlassian.com/ex/jira/${cloudId}/rest/` : '';
}
// ---------------------------------------------------------------------------
// Cloud ID extractor (mirrors the load-time useEffect in auth.tsx)
// ---------------------------------------------------------------------------
function extractCloudId(endpoint: string): string | null {
const match = endpoint.match(/\/ex\/jira\/([^/]+)\//);
return match ? match[1] : null;
}
// ---------------------------------------------------------------------------
// JIRA_GATEWAY_REGEX tests
// ---------------------------------------------------------------------------
describe('JIRA_GATEWAY_REGEX', () => {
it('accepts a valid gateway URL with UUID Cloud ID', () => {
expect(JIRA_GATEWAY_REGEX.test('https://api.atlassian.com/ex/jira/a1b2c3d4-e5f6-7890-abcd-ef1234567890/rest/')).toBe(true);
});
it('accepts a valid gateway URL with short Cloud ID', () => {
expect(JIRA_GATEWAY_REGEX.test('https://api.atlassian.com/ex/jira/mycloud123/rest/')).toBe(true);
});
it('rejects gateway URL missing trailing slash', () => {
expect(JIRA_GATEWAY_REGEX.test('https://api.atlassian.com/ex/jira/abc123/rest')).toBe(false);
});
it('rejects gateway URL missing /rest/', () => {
expect(JIRA_GATEWAY_REGEX.test('https://api.atlassian.com/ex/jira/abc123/')).toBe(false);
});
it('rejects standard Jira Cloud URL', () => {
expect(JIRA_GATEWAY_REGEX.test('https://mycompany.atlassian.net/rest/')).toBe(false);
});
it('rejects Jira Server URL', () => {
expect(JIRA_GATEWAY_REGEX.test('https://jira.mycompany.com/rest/')).toBe(false);
});
it('rejects gateway URL with extra path segment after /rest/', () => {
expect(JIRA_GATEWAY_REGEX.test('https://api.atlassian.com/ex/jira/abc123/rest/extra/')).toBe(false);
});
});
// ---------------------------------------------------------------------------
// JIRA_CLOUD_REGEX regression tests — must not break existing behaviour
// ---------------------------------------------------------------------------
describe('JIRA_CLOUD_REGEX (regression)', () => {
it('accepts a standard Jira Cloud URL', () => {
expect(JIRA_CLOUD_REGEX.test('https://mycompany.atlassian.net/rest/')).toBe(true);
});
it('rejects gateway URL', () => {
expect(JIRA_CLOUD_REGEX.test('https://api.atlassian.com/ex/jira/abc123/rest/')).toBe(false);
});
it('rejects Jira Server URL', () => {
expect(JIRA_CLOUD_REGEX.test('https://jira.mycompany.com/rest/')).toBe(false);
});
it('rejects cloud URL missing trailing slash', () => {
expect(JIRA_CLOUD_REGEX.test('https://mycompany.atlassian.net/rest')).toBe(false);
});
});
// ---------------------------------------------------------------------------
// buildGatewayEndpoint tests
// ---------------------------------------------------------------------------
describe('buildGatewayEndpoint', () => {
it('builds the correct URL from a UUID Cloud ID', () => {
expect(buildGatewayEndpoint('a1b2c3d4-e5f6-7890-abcd-ef1234567890')).toBe(
'https://api.atlassian.com/ex/jira/a1b2c3d4-e5f6-7890-abcd-ef1234567890/rest/',
);
});
it('builds the correct URL from a short Cloud ID', () => {
expect(buildGatewayEndpoint('mycloud123')).toBe(
'https://api.atlassian.com/ex/jira/mycloud123/rest/',
);
});
it('returns empty string for empty Cloud ID', () => {
expect(buildGatewayEndpoint('')).toBe('');
});
it('produced URL matches JIRA_GATEWAY_REGEX', () => {
const url = buildGatewayEndpoint('test-cloud-id');
expect(JIRA_GATEWAY_REGEX.test(url)).toBe(true);
});
});
// ---------------------------------------------------------------------------
// extractCloudId tests — verifies the edit-mode useEffect can pre-fill Cloud ID
// ---------------------------------------------------------------------------
describe('extractCloudId', () => {
it('extracts UUID Cloud ID from a saved gateway endpoint', () => {
expect(extractCloudId('https://api.atlassian.com/ex/jira/a1b2c3d4-e5f6-7890-abcd-ef1234567890/rest/')).toBe(
'a1b2c3d4-e5f6-7890-abcd-ef1234567890',
);
});
it('extracts short Cloud ID', () => {
expect(extractCloudId('https://api.atlassian.com/ex/jira/mycloud123/rest/')).toBe('mycloud123');
});
it('returns null for a standard cloud URL', () => {
expect(extractCloudId('https://mycompany.atlassian.net/rest/')).toBeNull();
});
it('round-trips: build then extract returns original Cloud ID', () => {
const id = 'round-trip-id-123';
expect(extractCloudId(buildGatewayEndpoint(id))).toBe(id);
});
});