1
+ import { JSDOM } from 'jsdom'
1
2
import createWebHistory from '../../src/history/html5'
2
3
import { createDom } from '../utils'
3
4
4
5
// These unit tests are supposed to tests very specific scenarios that are easier to setup
5
6
// on a unit test than an e2e tests
6
7
describe ( 'History HTMl5' , ( ) => {
8
+ let dom : JSDOM
7
9
beforeAll ( ( ) => {
8
- createDom ( )
10
+ dom = createDom ( )
11
+ } )
12
+
13
+ afterAll ( ( ) => {
14
+ dom . window . close ( )
15
+ } )
16
+
17
+ afterEach ( ( ) => {
18
+ // ensure no base element is left after a test as only the first is
19
+ // respected
20
+ for ( let element of Array . from ( document . getElementsByTagName ( 'base' ) ) )
21
+ element . remove ( )
9
22
} )
10
23
11
24
// this problem is very common on hash history when using a regular link
@@ -17,4 +30,42 @@ describe('History HTMl5', () => {
17
30
fullPath : '/' ,
18
31
} )
19
32
} )
33
+
34
+ it ( 'handles a basic base' , ( ) => {
35
+ expect ( createWebHistory ( ) . base ) . toBe ( '' )
36
+ expect ( createWebHistory ( '/' ) . base ) . toBe ( '' )
37
+ } )
38
+
39
+ it ( 'handles a base tag' , ( ) => {
40
+ const baseEl = document . createElement ( 'base' )
41
+ baseEl . href = '/foo/'
42
+ document . head . appendChild ( baseEl )
43
+ expect ( createWebHistory ( ) . base ) . toBe ( '/foo' )
44
+ } )
45
+
46
+ it ( 'handles a base tag with origin' , ( ) => {
47
+ const baseEl = document . createElement ( 'base' )
48
+ baseEl . href = 'https://example.com/foo/'
49
+ document . head . appendChild ( baseEl )
50
+ expect ( createWebHistory ( ) . base ) . toBe ( '/foo' )
51
+ } )
52
+
53
+ it ( 'handles a base tag with origin without trailing slash' , ( ) => {
54
+ const baseEl = document . createElement ( 'base' )
55
+ baseEl . href = 'https://example.com/bar'
56
+ document . head . appendChild ( baseEl )
57
+ expect ( createWebHistory ( ) . base ) . toBe ( '/bar' )
58
+ } )
59
+
60
+ it ( 'ignores base tag if base is provided' , ( ) => {
61
+ const baseEl = document . createElement ( 'base' )
62
+ baseEl . href = '/foo/'
63
+ document . head . appendChild ( baseEl )
64
+ expect ( createWebHistory ( '/bar/' ) . base ) . toBe ( '/bar' )
65
+ } )
66
+
67
+ it ( 'handles a non-empty base' , ( ) => {
68
+ expect ( createWebHistory ( '/foo/' ) . base ) . toBe ( '/foo' )
69
+ expect ( createWebHistory ( '/foo' ) . base ) . toBe ( '/foo' )
70
+ } )
20
71
} )
0 commit comments