Some checks failed
PR Preview / teardown-preview (pull_request) Has been skipped
Test / unit-test (push) Successful in 5s
Test / build-check (push) Successful in 4s
PR Preview / test (pull_request) Successful in 5s
PR Preview / deploy-preview (pull_request) Successful in 12s
Test / e2e-test (push) Failing after 2m14s
根本原因: 所有测试硬编码了只在生产环境有效的admin token, CI创建新数据库时token不同导致全部认证失败。 修复: - CI: 设置已知ADMIN_TOKEN环境变量传给后端和Cypress - cypress/support/e2e.js: 新增cy.getAdminToken()动态获取token - 24个spec文件: 硬编码token改为cy.getAdminToken() - UI选择器: 适配管理页面从tab移到UserMenu、编辑器DOM变化 - API: create_recipe→share_recipe、ingredients格式、权限变化 - 超时: 300s→420s适应32个spec Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
describe('Notification Flow', () => {
|
|
let adminToken
|
|
let authHeaders
|
|
|
|
before(() => {
|
|
cy.getAdminToken().then(token => {
|
|
adminToken = token
|
|
authHeaders = { Authorization: `Bearer ${token}` }
|
|
})
|
|
})
|
|
|
|
it('fetches notifications', () => {
|
|
cy.request({ url: '/api/notifications', headers: authHeaders }).then(res => {
|
|
expect(res.status).to.eq(200)
|
|
expect(res.body).to.be.an('array')
|
|
})
|
|
})
|
|
|
|
it('each notification has required fields', () => {
|
|
cy.request({ url: '/api/notifications', headers: authHeaders }).then(res => {
|
|
if (res.body.length > 0) {
|
|
const n = res.body[0]
|
|
expect(n).to.have.property('title')
|
|
expect(n).to.have.property('is_read')
|
|
expect(n).to.have.property('created_at')
|
|
}
|
|
})
|
|
})
|
|
|
|
it('can mark all notifications as read', () => {
|
|
cy.request({
|
|
method: 'POST', url: '/api/notifications/read-all',
|
|
headers: authHeaders, body: {}
|
|
}).then(res => {
|
|
expect(res.status).to.eq(200)
|
|
})
|
|
})
|
|
|
|
it('all notifications are now read', () => {
|
|
cy.request({ url: '/api/notifications', headers: authHeaders }).then(res => {
|
|
const unread = res.body.filter(n => !n.is_read)
|
|
expect(unread).to.have.length(0)
|
|
})
|
|
})
|
|
})
|