1
- ExUnit . start ( )
1
+ if System . get_env ( "AUTHENTICATION" ) == "true" do
2
+ ExUnit . start ( exclude: [ :test ] , include: [ :authentication ] )
3
+ else
4
+ ExUnit . start ( )
5
+ end
2
6
3
7
defmodule XandraTest.IntegrationCase do
4
8
use ExUnit.CaseTemplate
5
9
6
- using do
7
- quote do
10
+ using options do
11
+ start_options = Keyword . get ( options , :start_options , [ ] )
12
+ quote [ bind_quoted: [ start_options: start_options , case_template: __MODULE__ ] ] do
8
13
setup_all do
9
14
keyspace = "xandra_test_" <> String . replace ( inspect ( __MODULE__ ) , "." , "" )
10
- unquote ( __MODULE__ ) . setup_keyspace ( keyspace )
15
+ start_options = unquote ( start_options )
16
+ case_template = unquote ( case_template )
11
17
18
+ case_template . setup_keyspace ( keyspace , start_options )
12
19
on_exit ( fn ->
13
- unquote ( __MODULE__ ) . drop_keyspace ( keyspace )
20
+ case_template . drop_keyspace ( keyspace , start_options )
14
21
end )
15
22
16
- % { keyspace: keyspace }
23
+ % { keyspace: keyspace , start_options: start_options }
17
24
end
18
25
end
19
26
end
20
27
21
- setup % { keyspace: keyspace } do
22
- { :ok , conn } = Xandra . start_link ( )
28
+ setup % { keyspace: keyspace , start_options: start_options } do
29
+ { :ok , conn } = Xandra . start_link ( start_options )
23
30
Xandra . execute! ( conn , "USE #{ keyspace } " , [ ] )
24
31
% { conn: conn }
25
32
end
26
33
27
- def setup_keyspace ( keyspace ) do
28
- { :ok , conn } = Xandra . start_link ( )
34
+ def setup_keyspace ( keyspace , start_options ) do
35
+ { :ok , conn } = Xandra . start_link ( start_options )
29
36
Xandra . execute! ( conn , "DROP KEYSPACE IF EXISTS #{ keyspace } " , [ ] )
30
37
statement = """
31
38
CREATE KEYSPACE #{ keyspace }
@@ -34,8 +41,8 @@ defmodule XandraTest.IntegrationCase do
34
41
Xandra . execute! ( conn , statement , [ ] )
35
42
end
36
43
37
- def drop_keyspace ( keyspace ) do
38
- { :ok , conn } = Xandra . start_link ( )
44
+ def drop_keyspace ( keyspace , start_options ) do
45
+ { :ok , conn } = Xandra . start_link ( start_options )
39
46
Xandra . execute! ( conn , "DROP KEYSPACE IF EXISTS #{ keyspace } " , [ ] )
40
47
end
41
48
end
0 commit comments