-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathExceptionTest.php
More file actions
174 lines (162 loc) · 3.24 KB
/
ExceptionTest.php
File metadata and controls
174 lines (162 loc) · 3.24 KB
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
164
165
166
167
168
169
170
171
172
173
174
<?php
/**
* SCSSPHP
*
* @copyright 2012-2020 Leaf Corcoran
*
* @license http://opensource.org/licenses/MIT MIT
*
* @link http://scssphp.github.io/scssphp
*/
namespace ScssPhp\ScssPhp\Tests;
use PHPUnit\Framework\TestCase;
use ScssPhp\ScssPhp\CompilationResult;
use ScssPhp\ScssPhp\Compiler;
use ScssPhp\ScssPhp\Exception\SassException;
use ScssPhp\ScssPhp\Logger\QuietLogger;
/**
* Exception test
*
* @author Leaf Corcoran <leafot@gmail.com>
*/
class ExceptionTest extends TestCase
{
/**
* @param string $scss
* @param string $expectedExceptionMessage
*
* @dataProvider provideScss
*/
public function testThrowError($scss, $expectedExceptionMessage)
{
$this->expectException(SassException::class);
$this->expectExceptionMessage($expectedExceptionMessage);
$this->compile($scss);
}
/**
* @return array
*/
public static function provideScss()
{
return [
[<<<'END_OF_SCSS'
.test {
foo : bar;
END_OF_SCSS
,
'expected "}".'
],
[<<<'END_OF_SCSS'
.test {
}}
END_OF_SCSS
,
'unmatched "}".'
],
[<<<'END_OF_SCSS'
.test {
@include foo();
}
END_OF_SCSS
,
'Undefined mixin.'
],
[<<<'END_OF_SCSS'
@mixin do-nothing() {
}
.test {
@include do-nothing($a: "hello");
}
END_OF_SCSS
,
'No argument named $a.'
],
array(<<<'END_OF_SCSS'
div {
color: darken(cobaltgreen, 10%);
}
END_OF_SCSS
,
'$color: cobaltgreen is not a color.'
),
array(<<<'END_OF_SCSS'
div {
color: fade-out(#FFF, 100%);
}
END_OF_SCSS
,
'$amount: Expected 100% to be within 0 and 1.'
),
[<<<'END_OF_SCSS'
BODY {
DIV {
$bg: red;
}
background: $bg;
}
END_OF_SCSS
,
'Undefined variable.'
],
[<<<'END_OF_SCSS'
@mixin example {
background: $bg;
}
P {
$bg: red;
@include example;
}
END_OF_SCSS
,
'Undefined variable.'
],
[<<<'END_OF_SCSS'
a.important {
@extend .notice;
}
END_OF_SCSS
,
'was not found'
],
[<<<'END_OF_SCSS'
@import "missing";
END_OF_SCSS
,
'Can\'t find stylesheet to import.'
],
[<<<'END_OF_SCSS'
.test {
$list: 1, 2, 3;
value: nth($list, 1.5);
}
END_OF_SCSS
,
'1.5 is not an int.'
],
[<<<'END_OF_SCSS'
.test {
$list: 1, 2, 3;
$new-list: set-nth($list, 1.5, 5);
}
END_OF_SCSS
,
'1.5 is not an int.'
],
[
".foo { } .bar { } /* comment with \xd6-character */",
'expected utf-8 char.',
]
];
}
/**
* @param string $str
*
* @return CompilationResult
*/
private function compile($str)
{
$scss = new Compiler();
$scss->setLogger(new QuietLogger());
return $scss->compileString($str);
}
}