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
|
<?php
require_once __DIR__ . "/../scss.inc.php";
class ExceptionTest extends PHPUnit_Framework_TestCase {
public function setUp() {
$this->scss = new scssc();
}
/**
* @param string $scss
* @param string $expectedExceptionMessage
*
* @dataProvider provideScss
*/
public function testThrowError($scss, $expectedExceptionMessage) {
try {
$this->compile($scss);
} catch (Exception $e) {
if (strpos($e->getMessage(), $expectedExceptionMessage) !== false) {
return;
};
}
$this->fail('Expected exception to be raised: ' . $expectedExceptionMessage);
}
/**
* @return array
*/
public function provideScss() {
return array(
array(<<<END_OF_SCSS
.test {
foo : bar;
END_OF_SCSS
,
'unclosed block'
),
array(<<<END_OF_SCSS
.test {
}}
END_OF_SCSS
,
'unexpected }'
),
array(<<<END_OF_SCSS
.test { color: #fff / 0; }
END_OF_SCSS
,
'color: Can\'t divide by zero'
),
array(<<<END_OF_SCSS
.test {
@include foo();
}
END_OF_SCSS
,
'Undefined mixin foo'
),
array(<<<END_OF_SCSS
@mixin do-nothing() {
}
.test {
@include do-nothing(\$a: "hello");
}
END_OF_SCSS
,
'Mixin or function doesn\'t have an argument named $a.'
),
array(<<<END_OF_SCSS
div {
color: darken(cobaltgreen, 10%);
}
END_OF_SCSS
,
'expecting color'
),
);
}
private function compile($str) {
return trim($this->scss->compile($str));
}
}
|