1
1
require_relative "test_helper"
2
+ require "stringio"
2
3
3
4
module SassC
4
5
class FunctionsTest < MiniTest ::Test
5
6
include FixtureHelper
6
7
7
- SassString = Struct . new ( :value , :type ) do
8
- def to_s
9
- value
10
- end
8
+ def setup
9
+ @real_stderr , $stderr = $stderr, StringIO . new
11
10
end
12
11
13
- module Script ::Functions
14
- def javascript_path ( path )
15
- Script ::String . new ( "/js/#{ path . value } " , :string )
16
- end
17
-
18
- def no_return_path ( path )
19
- nil
20
- end
21
-
22
- def sass_return_path ( path )
23
- return SassString . new ( "'#{ path . value } '" , :string )
24
- end
25
-
26
- def optional_arguments ( path , optional = "bar" )
27
- return SassString . new ( "#{ path } /#{ optional } " , :string )
28
- end
29
-
30
- def function_that_raises_errors ( )
31
- raise StandardError , "Intentional wrong thing happened somewhere inside the custom function"
32
- end
33
-
34
- module Compass
35
- def stylesheet_path ( path )
36
- Script ::String . new ( "/css/#{ path . value } " , :identifier )
37
- end
38
- end
39
- include Compass
12
+ def teardown
13
+ $stderr = @real_stderr
40
14
end
41
15
42
16
def test_functions_may_return_sass_string_type
@@ -88,9 +62,21 @@ def test_function_with_optional_arguments
88
62
EOS
89
63
end
90
64
65
+ def test_function_with_unsupported_tag
66
+ engine = Engine . new ( "div {url: function_with_unsupported_tag(red);}" )
67
+
68
+ exception = assert_raises ( SassC ::SyntaxError ) do
69
+ engine . render
70
+ end
71
+
72
+ assert_equal "Error: error in C function function_with_unsupported_tag: Sass argument of type sass_color unsupported\n \n Backtrace:\n \t stdin:1, in function `function_with_unsupported_tag`\n \t stdin:1\n on line 1 of stdin\n >> div {url: function_with_unsupported_tag(red);}\n ----------^\n " , exception . message
73
+
74
+ assert_equal "[SassC::FunctionsHandler] Sass argument of type sass_color unsupported" , stderr_output
75
+ end
76
+
91
77
def test_function_with_error
92
78
engine = Engine . new ( "div {url: function_that_raises_errors();}" )
93
- exception = assert_raises ( SassC ::SyntaxError , "" ) do
79
+ exception = assert_raises ( SassC ::SyntaxError ) do
94
80
engine . render
95
81
end
96
82
@@ -103,6 +89,52 @@ def test_function_with_error
103
89
>> div {url: function_that_raises_errors();}
104
90
----------^
105
91
" , exception . message
92
+
93
+ assert_equal "[SassC::FunctionsHandler] Intentional wrong thing happened somewhere inside the custom function" , stderr_output
94
+ end
95
+
96
+ private
97
+
98
+ SassString = Struct . new ( :value , :type ) do
99
+ def to_s
100
+ value
101
+ end
102
+ end
103
+
104
+ module Script ::Functions
105
+ def javascript_path ( path )
106
+ Script ::String . new ( "/js/#{ path . value } " , :string )
107
+ end
108
+
109
+ def no_return_path ( path )
110
+ nil
111
+ end
112
+
113
+ def sass_return_path ( path )
114
+ return SassString . new ( "'#{ path . value } '" , :string )
115
+ end
116
+
117
+ def optional_arguments ( path , optional = "bar" )
118
+ return SassString . new ( "#{ path } /#{ optional } " , :string )
119
+ end
120
+
121
+ def function_that_raises_errors ( )
122
+ raise StandardError , "Intentional wrong thing happened somewhere inside the custom function"
123
+ end
124
+
125
+ def function_with_unsupported_tag ( color )
126
+ end
127
+
128
+ module Compass
129
+ def stylesheet_path ( path )
130
+ Script ::String . new ( "/css/#{ path . value } " , :identifier )
131
+ end
132
+ end
133
+ include Compass
134
+ end
135
+
136
+ def stderr_output
137
+ $stderr. string . gsub ( "\u0000 \n " , '' )
106
138
end
107
139
end
108
140
end
0 commit comments