1
+ import { expect } from "chai" ;
2
+ import { AllowedHostsValidator } from "../../../src/authentication" ;
3
+
4
+ describe ( 'AllowedHostsValidator' , ( ) => {
5
+ let validator : AllowedHostsValidator ;
6
+
7
+ beforeEach ( ( ) => {
8
+ validator = new AllowedHostsValidator ( new Set ( [ 'example.com' , 'test.com' ] ) ) ;
9
+ } ) ;
10
+
11
+ it ( 'constructor should validate hosts' , ( ) => {
12
+ expect ( ( ) => new AllowedHostsValidator ( new Set ( [ 'http://invalid.com' ] ) ) ) . to . throw ( 'host should not contain http or https prefix' ) ;
13
+ } ) ;
14
+
15
+ it ( 'getAllowedHosts should return correct hosts' , ( ) => {
16
+ expect ( JSON . stringify ( validator . getAllowedHosts ( ) ) ) . to . equal ( JSON . stringify ( [ 'example.com' , 'test.com' ] ) ) ;
17
+ } ) ;
18
+
19
+ it ( 'setAllowedHosts should update allowed hosts' , ( ) => {
20
+ validator . setAllowedHosts ( new Set ( [ 'newhost.com' ] ) ) ;
21
+ expect ( JSON . stringify ( validator . getAllowedHosts ( ) ) ) . to . equal ( JSON . stringify ( [ 'newhost.com' ] ) ) ;
22
+ } ) ;
23
+
24
+ it ( 'setAllowedHosts should validate new hosts' , ( ) => {
25
+ expect ( ( ) => validator . setAllowedHosts ( new Set ( [ 'https://invalid.com' ] ) ) ) . to . throw ( 'host should not contain http or https prefix' ) ;
26
+ } ) ;
27
+
28
+ it ( 'isUrlHostValid should return true for valid hosts' , ( ) => {
29
+ expect ( validator . isUrlHostValid ( 'http://example.com/path' ) ) . to . be . true ;
30
+ expect ( validator . isUrlHostValid ( 'http://test.com/path' ) ) . to . be . true ;
31
+ } ) ;
32
+
33
+ it ( 'isUrlHostValid should return false for invalid hosts' , ( ) => {
34
+ expect ( validator . isUrlHostValid ( 'http://invalid.com/path' ) ) . to . be . false ;
35
+ } ) ;
36
+
37
+ it ( 'isUrlHostValid should return false for invalid URLs' , ( ) => {
38
+ expect ( validator . isUrlHostValid ( 'invalid' ) ) . to . be . false ;
39
+ } ) ;
40
+ } ) ;
0 commit comments