-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.test.js
163 lines (136 loc) · 3.48 KB
/
index.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
const postcss = require('postcss')
const plugin = require('./')
async function process(input, opts = {}) {
return await postcss([plugin(opts)]).process(input, {from: undefined})
}
async function run(input, output, opts = {}) {
let result = await process(input, opts)
expect(result.css).toEqual(output)
expect(result.warnings()).toHaveLength(0)
}
describe('postcss-easy-z', () => {
describe('z-stack', () => {
it('creates z-indices based on order of appearance', async () => {
const input = `
:root {
--z-content: z-stack();
--z-header: z-stack();
--z-popup: z-stack();
}
`
const output = `
:root {
--z-content: 1;
--z-header: calc(var(--z-content) + 1);
--z-popup: calc(var(--z-header) + 1);
}
`
await run(input, output)
})
it('starts counting z-indices from default value in a new scope', async () => {
const input = `
.a {
--z-a1: z-stack();
--z-a2: z-stack();
}
.b {
--z-b1: z-stack();
--z-b2: z-stack();
}
`
const output = `
.a {
--z-a1: 1;
--z-a2: calc(var(--z-a1) + 1);
}
.b {
--z-b1: 1;
--z-b2: calc(var(--z-b1) + 1);
}
`
await run(input, output)
})
it('starts counting with a provided value', async () => {
const input = `
:root {
--z-content: z-stack(10);
--z-header: z-stack();
--z-popup: z-stack();
}
`
const output = `
:root {
--z-content: 10;
--z-header: calc(var(--z-content) + 1);
--z-popup: calc(var(--z-header) + 1);
}
`
await run(input, output)
})
it('fails if starting value is not first', async () => {
const input = `
:root {
--z-content: z-stack();
--z-header: z-stack(10);
--z-popup: z-stack();
}
`
await expect(process(input)).rejects.toThrow('z-stack with starting value should be first')
})
})
describe('z-over / z-under', () => {
it('converts z-over usages', async () => {
const input = `
:root {
--z-content: 1;
--z-header: z-over(var(--z-content));
--z-popup: z-over(var(--z-header));
}
`
const output = `
:root {
--z-content: 1;
--z-header: calc(var(--z-content) + 1);
--z-popup: calc(var(--z-header) + 1);
}
`
await run(input, output)
})
it('converts z-under usages', async () => {
const input = `
:root {
--z-popup: 100;
--z-header: z-under(var(--z-popup));
--z-content: z-under(var(--z-header));
}
`
const output = `
:root {
--z-popup: 100;
--z-header: calc(var(--z-popup) - 1);
--z-content: calc(var(--z-header) - 1);
}
`
await run(input, output)
})
it('works for properties', async () => {
const input = `
.overContent {
z-index: z-over(var(--z-content));
}
.underHeader {
z-index: z-under(var(--z-header));
}
`
const output = `
.overContent {
z-index: calc(var(--z-content) + 1);
}
.underHeader {
z-index: calc(var(--z-header) - 1);
}
`
await run(input, output)
})
})
})