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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
defmodule CoverTool do
def start(path, options) do
{dirs, options} = Keyword.pop(options, :dirs, [])
fun = ExCoveralls.start(path, options)
Mix.shell().info("Cover compiling modules ...")
:cover.stop()
:cover.start()
Enum.each(dirs, fn path ->
path
|> Path.expand(__DIR__)
|> String.to_charlist()
|> :cover.compile_beam_directory()
end)
ExCoveralls.ConfServer.start()
ExCoveralls.ConfServer.set(options)
ExCoveralls.StatServer.start()
fun
end
end
defmodule CouchDBTest.Mixfile do
use Mix.Project
def project do
[
app: :couchdbtest,
version: "0.1.0",
elixir: "~> 1.5",
lockfile: Path.expand("mix.lock", __DIR__),
deps_path: Path.expand("src", __DIR__),
build_path: Path.expand("_build", __DIR__),
compilers: [:elixir, :app],
start_permanent: Mix.env() == :prod,
build_embedded: Mix.env() == :prod,
deps: deps(),
consolidate_protocols: Mix.env() not in [:test, :dev, :integration],
test_paths: get_test_paths(Mix.env()),
elixirc_paths: elixirc_paths(Mix.env()),
test_coverage: [
tool: CoverTool,
dirs: get_coverage_paths(),
type: "html"
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
applications: [:httpotion]
]
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["test/elixir/lib", "test/elixir/test/support"]
defp elixirc_paths(:integration), do: ["test/elixir/lib", "test/elixir/test/support"]
defp elixirc_paths(_), do: ["test/elixir/lib"]
# Run "mix help deps" to learn about dependencies.
defp deps() do
[
{:junit_formatter, "~> 3.0", only: [:dev, :test, :integration]},
{:httpotion, ">= 3.1.3", only: [:dev, :test, :integration], runtime: false},
{:excoveralls, "~> 0.12", only: :test},
{:jiffy, path: Path.expand("src/jiffy", __DIR__)},
{:ibrowse,
path: Path.expand("src/ibrowse", __DIR__), override: true, compile: false},
{:credo, "~> 1.2.0", only: [:dev, :test, :integration], runtime: false}
]
end
def get_test_paths(:test) do
Path.wildcard("src/*/test/exunit") |> Enum.filter(&File.dir?/1)
end
def get_test_paths(:integration) do
integration_tests =
Path.wildcard("src/*/test/integration") |> Enum.filter(&File.dir?/1)
["test/elixir/test" | integration_tests]
end
def get_test_paths(_) do
[]
end
defp get_deps_paths() do
deps = [
"bunt",
"certifi",
"credo",
"excoveralls",
"hackney",
"httpotion",
"ibrowse",
"idna",
"jason",
"jiffy",
"junit_formatter",
"metrics",
"mimerl",
"parse_trans",
"ssl_verify_fun",
"unicode_util_compat",
"b64url",
"bear",
"mochiweb",
"snappy",
"rebar",
"proper",
"mochiweb",
"meck",
"khash",
"hyper",
"fauxton",
"folsom",
"hqueue"
]
deps |> Enum.map(fn app -> "src/#{app}" end)
end
defp get_coverage_paths() do
deps =
get_deps_paths()
|> Enum.reduce(MapSet.new(), fn x, set ->
MapSet.put(set, "#{x}/ebin")
end)
Path.wildcard("src/*/ebin")
|> Enum.filter(&File.dir?/1)
|> Enum.filter(fn path -> not MapSet.member?(deps, path) end)
end
end
|