-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-deployed.js
More file actions
241 lines (205 loc) · 6.12 KB
/
test-deployed.js
File metadata and controls
241 lines (205 loc) · 6.12 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
/**
* Test Deployed API
*
* Usage:
* node test-deployed.js https://your-app.up.railway.app
* node test-deployed.js http://localhost:3000
*/
const BASE_URL = process.argv[2] || 'http://localhost:3000';
console.log('\n============================================================');
console.log(' WikiScrolls API Deployment Test');
console.log('============================================================\n');
console.log(`Testing URL: ${BASE_URL}\n`);
// Helper functions
const makeRequest = async (method, path, options = {}) => {
const url = `${BASE_URL}${path}`;
const config = {
method,
headers: {
'Content-Type': 'application/json',
...options.headers,
},
};
if (options.body) {
config.body = JSON.stringify(options.body);
}
try {
const response = await fetch(url, config);
const data = await response.json().catch(() => ({}));
return { ok: response.ok, status: response.status, data };
} catch (error) {
return { ok: false, error: error.message };
}
};
const logTest = (num, name) => {
console.log(`\nTest ${num}: ${name}`);
};
const logSuccess = (message) => {
console.log(`\x1b[32m✓\x1b[0m ${message}`);
};
const logError = (message, data) => {
console.log(`\x1b[31m✗\x1b[0m ${message}`);
if (data) console.log(JSON.stringify(data, null, 2));
};
const logInfo = (message) => {
console.log(` ${message}`);
};
// State management
const state = {
userToken: null,
adminToken: null,
userId: null,
};
// Test functions
async function testHealth() {
logTest(1, 'Health Check');
const result = await makeRequest('GET', '/api/health');
if (result.ok) {
logSuccess('✅ API is healthy and running');
logInfo(`Status: ${result.data.data?.status}`);
return true;
} else {
logError('❌ Health check failed', result);
return false;
}
}
async function testSignup() {
logTest(2, 'User Signup');
const timestamp = Date.now();
const result = await makeRequest('POST', '/api/auth/signup', {
body: {
username: `testuser_${timestamp}`,
email: `test_${timestamp}@example.com`,
password: 'SecurePass123!',
},
});
if (result.ok) {
state.userToken = result.data.data.token;
state.adminToken = result.data.data.token;
state.userId = result.data.data.user.id;
logSuccess('✅ Signup successful');
logInfo(`User ID: ${state.userId}`);
return true;
} else if (result.data?.message?.includes('already exists')) {
logInfo('User already exists (using existing credentials)');
return true;
} else {
logError('❌ Signup failed', result.data);
return false;
}
}
async function testLogin() {
logTest(3, 'User Login');
const result = await makeRequest('POST', '/api/auth/login', {
body: {
email: 'testuser@example.com',
password: 'SecurePass123!',
},
});
if (result.ok) {
state.userToken = result.data.data.token;
state.adminToken = result.data.data.token;
state.userId = result.data.data.user.id;
logSuccess('✅ Login successful');
logInfo(`User ID: ${state.userId}`);
return true;
} else {
logError('❌ Login failed - try with the signup user', result.data);
return false;
}
}
async function testGetProfile() {
logTest(4, 'Get User Profile');
if (!state.userToken) {
logError('No auth token available');
return false;
}
const result = await makeRequest('GET', '/api/auth/profile', {
headers: { Authorization: `Bearer ${state.userToken}` },
});
if (result.ok) {
logSuccess('✅ Profile retrieved');
logInfo(`Username: ${result.data.data.username}`);
logInfo(`Email: ${result.data.data.email}`);
return true;
} else {
logError('❌ Get profile failed', result.data);
return false;
}
}
async function testCreateCategory() {
logTest(5, 'Create Category (Admin Required)');
if (!state.adminToken) {
logError('No admin token available');
return false;
}
const timestamp = Date.now();
const result = await makeRequest('POST', '/api/categories', {
headers: { Authorization: `Bearer ${state.adminToken}` },
body: {
name: `TestCategory_${timestamp}`,
description: 'Test category for deployment verification',
color: '#4CAF50',
},
});
if (result.ok) {
logSuccess('✅ Category created');
logInfo(`Category: ${result.data.data.name}`);
return true;
} else if (result.status === 403) {
logInfo('⚠️ User is not admin - update in database:');
logInfo(`UPDATE "User" SET "isAdmin" = true WHERE id = '${state.userId}';`);
return false;
} else {
logError('❌ Create category failed', result.data);
return false;
}
}
async function testUnauthorized() {
logTest(6, 'Test Authorization (No Token)');
const result = await makeRequest('GET', '/api/auth/profile');
if (!result.ok && result.status === 401) {
logSuccess('✅ Unauthorized access properly blocked');
return true;
} else {
logError('❌ Authorization not working properly', result.data);
return false;
}
}
// Main test execution
async function runTests() {
const tests = [
testHealth,
testSignup,
testLogin,
testGetProfile,
testCreateCategory,
testUnauthorized,
];
let passed = 0;
let failed = 0;
for (const test of tests) {
try {
const result = await test();
if (result) passed++;
else failed++;
} catch (error) {
console.error(`Error in test: ${error.message}`);
failed++;
}
}
console.log('\n============================================================');
console.log(' Test Summary');
console.log('============================================================');
console.log(`Total Tests: ${tests.length}`);
console.log(`\x1b[32mPassed: ${passed}\x1b[0m`);
console.log(`\x1b[31mFailed: ${failed}\x1b[0m`);
console.log(`Success Rate: ${((passed / tests.length) * 100).toFixed(1)}%`);
if (failed === 0) {
console.log('\n🎉 All tests passed! Your deployment is working correctly! 🎉\n');
} else {
console.log('\n⚠️ Some tests failed. Check the output above for details.\n');
}
}
// Run tests
runTests().catch(console.error);