#Amrita
A polite, well mannered and thoroughly upstanding testing framework for Elixir.
##Install
Add to your mix.exs
defp deps do
[
{:amrita, "0.1.4", github: "josephwilk/amrita"}
]
end
After adding Amrita as a dependency, to install please run:
mix deps.get
##Getting started
Ensure you start Amrita in: test/test_helper.exs
Amrita.start
- Test filenames must end with "_test.exs".
- Require test_helper.exs in every test (this will ensure Amrita is started):
- Mix in
Amrita.Sweet
which will bring in everything you need to use Amrita:
Code.require_file "../test_helper.exs", __FILE__
defmodule ExampleFacts do
use Amrita.Sweet
# Write some facts here
end
Now all thats left is to write some tests!
Amrita supports BDD style mocks.
defmodule Polite do
def swear? do
false
end
end
defmodule Rude do
def swear?(word) do
true
end
end
fact "mocks must always be called for a pass",
provided: [Polite.swear? |> true,
Rude.swear?("bugger") |> false] do
Polite.swear? |> truthy
Rude.swear?("bugger") |> falsey
end
#We can use a wildcard when we don't care about the exact value of a argument:
fact "mock with a wildcard", provided: [Rude.swear?(anything) |> false] do
Funk.swear?(:yes) |> falsey
Funk.swear?(:whatever) |> falsey
end
Amrita is all about checker based testing!
Code.require_file "../test_helper.exs", __FILE__
defmodule ExampleFacts do
use Amrita.Sweet
facts "about Amrita checkers" do
fact "contains checks if an element is in a collection" do
[1, 2, 4, 5] |> contains 4
{6, 7, 8, 9} |> contains 9
[a: 1, :b 2] |> contains {:a, 1}
end
fact "! negates a checker" do
[1, 2, 3, 4] |> !contains 9999
# or you can add a space, like this. Whatever tickles your fancy.
[1, 2, 3, 4] |> ! contains 9999
10 |> ! equal 11
end
fact "contains works with strings" do
"mad hatters tea party" |> contains "hatters"
"mad hatter tea party" |> contains %r"h(\w+)er"
end
fact "has_prefix checks if the start of a collection matches" do
[1, 2, 3, 4] |> has_prefix [1, 2]
{1, 2, 3, 4} |> has_prefix {1, 2}
"I cannot explain myself for I am not myself" |> has_prefix "I"
end
fact "has_prefix with a Set ignores the order" do
{1, 2, 3, 4} |> has_prefix Set.new([{2, 1}])
end
fact "has_suffix checks if the end of a collection matches" do
[1, 2, 3, 4 ,5] |> has_suffix [4, 5]
{1, 2, 3, 4} |> has_suffix {3, 4}
"I cannot explain myself for I am not myself" |> has_suffix "myself"
end
fact "has_suffix with a Set ignores the order" do
{1, 2, 3, 4} |> has_suffix Set.new([{4, 3}])
end
fact "for_all checks if a predicate holds for all elements" do
[2, 4, 6, 8] |> for_all even(&1)
; or alternatively you could write
[2, 4, 6, 8] |> Enum.all? even(&1)
end
fact "odd checks if a number is, well odd" do
1 |> odd
end
fact "even checks is a number if even" do
2 |> even
end
fact "roughly checks if a float within some +-delta matches" do
0.1001 |> roughly 0.1
end
fact "falsey checks if expression evalulates to false" do
nil |> falsey
end
fact "truthy checks if expression evaulates to true" do
"" |> truthy
end
fact "equals checks ==" do
1 - 10 |> equals -9
end
defexception Boom, message: "Golly gosh"
fact "raises checks if an exception was raised" do
fn -> raise Boom end |> raises ExampleFacts.Boom
end
end
future_fact "I'm not run yet, just printed as a reminder. Like a TODO" do
#Never run
false |> truthy
end
fact "a fact without a body is much like a TODO"
#Backwards compatible with ExUnit
test "arithmetic" do
assert 1 + 1 == 2
end
end
Use mix to run your tests:
mix test
Or if you want more details try with the Pretty formatter:
mix test --trace
##Custom checkers
Its simple to create your own checkers:
def a_thousand(actual) do
rem(actual, 1000) |> equals 0
end
fact "about 1000s" do
1000 |> a_thousand ; true
1200 |> a_thousand ; false
end
Amrita tries its best to be polite with its errors:
If facts are not your thing nothing is stopping you from using ExUnits test
function.
You still get all of Amrita's helpful checkers.
defmodule IDontLikeFacts do
use Amrita.Sweet
test "I prefer test to fact" do
"hello" |> contains "ello"
end
end
Checkout an example using Amrita with Dynamo: https://github.com/elixir-amrita/amrita_with_dynamo
Hacking on Amrita.
###Running tests
Amrita runs tests against Elixir's latest stable release and against Elixir master. Make is your friend for running these tests:
#Run lastest stable and elixir master
make ci
#Run tests against your current Elixir install
make
http://josephwilk.github.io/amrita/docs
Thanks for reading me, I appreciate it.
Have a good day.
Maybe drink some tea.
Its good for the constitution.
##License (The MIT License)
Copyright (c) 2013 Joseph Wilk
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.