-
Notifications
You must be signed in to change notification settings - Fork 474
Expand file tree
/
Copy pathmachine.test.ts
More file actions
142 lines (114 loc) · 3.4 KB
/
Copy pathmachine.test.ts
File metadata and controls
142 lines (114 loc) · 3.4 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
import { test } from '@playwright/test';
import { appConfigs } from '../../presets';
import type { MachineAuthTestAdapter } from '../../testUtils/machineAuthHelpers';
import {
registerApiKeyAuthTests,
registerM2MAuthTests,
registerOAuthAuthTests,
} from '../../testUtils/machineAuthHelpers';
const createMainFile = () => `
import 'dotenv/config';
import { clerkMiddleware } from '@clerk/express';
import express from 'express';
import ViteExpress from 'vite-express';
import { machineRoutes } from './routes/machine';
const app = express();
app.use(express.json());
app.use(
clerkMiddleware({
publishableKey: process.env.VITE_CLERK_PUBLISHABLE_KEY,
}),
);
app.use('/api', machineRoutes);
const port = parseInt(process.env.PORT as string) || 3002;
ViteExpress.listen(app, port, () => console.log(\`Server is listening on port \${port}...\`));
`;
const adapter: MachineAuthTestAdapter = {
baseConfig: appConfigs.express.vite,
apiKey: {
path: '/api/me',
addRoutes: config =>
config
.addFile(
'src/server/routes/machine.ts',
() => `
import { getAuth } from '@clerk/express';
import { Router } from 'express';
const router = Router();
router.get('/me', (req: any, res: any) => {
const { userId, tokenType } = getAuth(req, { acceptsToken: 'api_key' });
if (!userId) {
res.status(401).send('Unauthorized');
return;
}
res.json({ userId, tokenType });
});
router.post('/me', (req: any, res: any) => {
const authObject = getAuth(req, { acceptsToken: ['api_key', 'session_token'] });
if (!authObject.isAuthenticated) {
res.status(401).send('Unauthorized');
return;
}
res.json({ userId: authObject.userId, tokenType: authObject.tokenType });
});
export const machineRoutes = router;
`,
)
.addFile('src/server/main.ts', () => createMainFile()),
},
m2m: {
path: '/api/m2m',
addRoutes: config =>
config
.addFile(
'src/server/routes/machine.ts',
() => `
import { getAuth } from '@clerk/express';
import { Router } from 'express';
const router = Router();
router.get('/m2m', (req: any, res: any) => {
const { subject, tokenType, machineId } = getAuth(req, { acceptsToken: 'm2m_token' });
if (!machineId) {
res.status(401).send('Unauthorized');
return;
}
res.json({ subject, tokenType });
});
export const machineRoutes = router;
`,
)
.addFile('src/server/main.ts', () => createMainFile()),
},
oauth: {
verifyPath: '/api/oauth-verify',
callbackPath: '/api/oauth/callback',
addRoutes: config =>
config
.addFile(
'src/server/routes/machine.ts',
() => `
import { getAuth } from '@clerk/express';
import { Router } from 'express';
const router = Router();
router.get('/oauth-verify', (req: any, res: any) => {
const { userId, tokenType } = getAuth(req, { acceptsToken: 'oauth_token' });
if (!userId) {
res.status(401).send('Unauthorized');
return;
}
res.json({ userId, tokenType });
});
router.get('/oauth/callback', (_req: any, res: any) => {
res.json({ message: 'OAuth callback received' });
});
export const machineRoutes = router;
`,
)
.addFile('src/server/main.ts', () => createMainFile()),
},
};
test.describe('Express machine authentication @machine', () => {
registerApiKeyAuthTests(adapter);
registerM2MAuthTests(adapter);
registerOAuthAuthTests(adapter);
});