authelia/test/suites/basic/scenarii/VerifyEndpoint.ts

16 lines
710 B
TypeScript
Raw Normal View History

2019-02-09 22:20:37 +00:00
import { GET_Expect401, GET_ExpectRedirect } from "../../../helpers/utils/Requests";
export default function() {
describe('Query without authenticated cookie', function() {
2019-03-26 20:00:47 +00:00
it('should get a 401 on GET to https://login.example.com:8080/api/verify', async function() {
2019-02-09 22:20:37 +00:00
await GET_Expect401('https://login.example.com:8080/api/verify');
});
describe('Parameter `rd` required by Kubernetes ingress controller', async function() {
it('should redirect to https://login.example.com:8080', async function() {
await GET_ExpectRedirect('https://login.example.com:8080/api/verify?rd=https://login.example.com:8080',
'https://login.example.com:8080');
});
});
});
}