mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
a991379a74
Some tests are not fully rewritten in Go, a typescript wrapper is called instead until we remove the remaining TS tests and dependencies. Also, dockerize every components (mainly Authelia backend, frontend and kind) so that the project does not interfere with user host anymore (open ports for instance). The only remaining intrusive change is the one done during bootstrap to add entries in /etc/hosts. It will soon be avoided using authelia.com domain that I own.
51 lines
2.7 KiB
TypeScript
51 lines
2.7 KiB
TypeScript
import { POST_Expect403, GET_Expect403 } from "../../../helpers/utils/Requests";
|
|
|
|
export default function() {
|
|
// POST
|
|
it('should return 403 error when posting to https://login.example.com:8080/api/secondfactor/totp', async function() {
|
|
await POST_Expect403('https://login.example.com:8080/api/secondfactor/totp', { token: 'MALICIOUS_TOKEN' });
|
|
});
|
|
|
|
it('should return 403 error when posting to https://login.example.com:8080/api/secondfactor/u2f/sign', async function() {
|
|
await POST_Expect403('https://login.example.com:8080/api/secondfactor/u2f/sign');
|
|
});
|
|
|
|
it('should return 403 error when posting to https://login.example.com:8080/api/secondfactor/u2f/register', async function() {
|
|
await POST_Expect403('https://login.example.com:8080/api/secondfactor/u2f/register');
|
|
});
|
|
|
|
it('should return 403 error on GET to https://login.example.com:8080/api/secondfactor/u2f/sign_request', async function() {
|
|
await POST_Expect403('https://login.example.com:8080/api/secondfactor/u2f/sign_request');
|
|
});
|
|
|
|
it('should return 403 error when posting to https://login.example.com:8080/api/secondfactor/preferences', async function() {
|
|
await POST_Expect403('https://login.example.com:8080/api/secondfactor/preferences');
|
|
});
|
|
|
|
it('should return 403 error on GET to https://login.example.com:8080/api/secondfactor/preferences', async function() {
|
|
await GET_Expect403('https://login.example.com:8080/api/secondfactor/preferences');
|
|
});
|
|
|
|
it('should return 403 error on GET to https://login.example.com:8080/api/secondfactor/available', async function() {
|
|
await GET_Expect403('https://login.example.com:8080/api/secondfactor/available');
|
|
});
|
|
|
|
|
|
describe('Identity validation endpoints blocked to unauthenticated users', function() {
|
|
it('should return 403 error on POST to https://login.example.com:8080/api/secondfactor/u2f/identity/start', async function() {
|
|
await POST_Expect403('https://login.example.com:8080/api/secondfactor/u2f/identity/start');
|
|
});
|
|
|
|
it('should return 403 error on POST to https://login.example.com:8080/api/secondfactor/u2f/identity/finish', async function() {
|
|
await POST_Expect403('https://login.example.com:8080/api/secondfactor/u2f/identity/finish');
|
|
});
|
|
|
|
it('should return 403 error on POST to https://login.example.com:8080/api/secondfactor/totp/identity/start', async function() {
|
|
await POST_Expect403('https://login.example.com:8080/api/secondfactor/totp/identity/start');
|
|
});
|
|
|
|
it('should return 403 error on POST to https://login.example.com:8080/api/secondfactor/totp/identity/finish', async function() {
|
|
await POST_Expect403('https://login.example.com:8080/api/secondfactor/totp/identity/finish');
|
|
});
|
|
});
|
|
} |