Skip to content

Commit 96cc6f8

Browse files
committed
Make authentication testable
1 parent 96b217c commit 96cc6f8

File tree

3 files changed

+40
-15
lines changed

3 files changed

+40
-15
lines changed

.travis.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,25 @@ elixir:
1010

1111
env:
1212
matrix:
13-
- CASSANDRA_VERSION="2.2.8"
14-
- CASSANDRA_VERSION="3.9"
13+
- CASSANDRA_VERSION=2.2.8 AUTHENTICATION=true
14+
- CASSANDRA_VERSION=2.2.8
15+
- CASSANDRA_VERSION=3.9 AUTHENTICATION=true
16+
- CASSANDRA_VERSION=3.9
1517

1618
matrix:
1719
include:
1820
otp_release: 18.3
1921
elixir: 1.4.0
20-
env: CASSANDRA_VERSION="3.9"
22+
env: CASSANDRA_VERSION=3.9
2123

2224
# These steps are taken from: http://cassandra.apache.org/doc/latest/getting_started/installing.html#installation-from-binary-tarball-files.
2325
before_install:
2426
- java -version
2527
- wget https://archive.apache.org/dist/cassandra/$CASSANDRA_VERSION/apache-cassandra-$CASSANDRA_VERSION-bin.tar.gz
2628
- tar -xzf apache-cassandra-$CASSANDRA_VERSION-bin.tar.gz
29+
- |-
30+
if [ $AUTHENTICATION = true ]; then
31+
sed -i -e "s/\(authenticator: \)AllowAllAuthenticator/\1PasswordAuthenticator/" apache-cassandra-$CASSANDRA_VERSION/conf/cassandra.yaml
32+
fi
2733
- sh apache-cassandra-$CASSANDRA_VERSION/bin/cassandra
2834
- for try in {1..12}; do (nodetool version > /dev/null 2>&1 && break) || sleep 5; done
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
defmodule AuthenticationTest do
2+
start_options = [
3+
authentication: {Xandra.Authenticator.Password, [username: "cassandra", password: "cassandra"]},
4+
]
5+
use XandraTest.IntegrationCase, start_options: start_options
6+
7+
@moduletag :authentication
8+
9+
test "challenge is passed", %{conn: conn, keyspace: keyspace} do
10+
assert Xandra.execute!(conn, "USE #{keyspace}")
11+
end
12+
end

test/test_helper.exs

+19-12
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,38 @@
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
26

37
defmodule XandraTest.IntegrationCase do
48
use ExUnit.CaseTemplate
59

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
813
setup_all do
914
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)
1117

18+
case_template.setup_keyspace(keyspace, start_options)
1219
on_exit(fn ->
13-
unquote(__MODULE__).drop_keyspace(keyspace)
20+
case_template.drop_keyspace(keyspace, start_options)
1421
end)
1522

16-
%{keyspace: keyspace}
23+
%{keyspace: keyspace, start_options: start_options}
1724
end
1825
end
1926
end
2027

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)
2330
Xandra.execute!(conn, "USE #{keyspace}", [])
2431
%{conn: conn}
2532
end
2633

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)
2936
Xandra.execute!(conn, "DROP KEYSPACE IF EXISTS #{keyspace}", [])
3037
statement = """
3138
CREATE KEYSPACE #{keyspace}
@@ -34,8 +41,8 @@ defmodule XandraTest.IntegrationCase do
3441
Xandra.execute!(conn, statement, [])
3542
end
3643

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)
3946
Xandra.execute!(conn, "DROP KEYSPACE IF EXISTS #{keyspace}", [])
4047
end
4148
end

0 commit comments

Comments
 (0)