-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy pathmix_test.rb
128 lines (114 loc) · 4.14 KB
/
mix_test.rb
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
# frozen_string_literal: true
require "test_helper"
require "tmpdir"
if Licensed::Shell.tool_available?("mix")
describe Licensed::Sources::Mix do
let(:fixtures) { File.expand_path("../../fixtures/mix", __FILE__) }
let(:config) { Licensed::AppConfiguration.new({ "source_path" => Dir.pwd }) }
let(:source) { Licensed::Sources::Mix.new(config) }
describe "enabled?" do
it "is true if mix.lock exists" do
Dir.chdir(fixtures) do
assert source.enabled?
end
end
it "is false if no mix.lock exists" do
Dir.chdir(Dir.tmpdir) do
refute source.enabled?
end
end
end
describe "dependencies" do
it "finds indirect dependencies" do
Dir.chdir(fixtures) do
dep = source.dependencies.detect { |d| d.name == "mime" }
path = File.absolute_path(File.join(".", "deps", "mime"))
assert dep
assert_equal path, dep.path
# mime requirement from plug is `~> 1.0`
assert Gem::Requirement.new("~> 1.0").satisfied_by?(Gem::Version.new(dep.version))
assert_equal "mix", dep.record["type"]
# Mix-specific values
assert_equal "hex", dep.record["scm"]
assert_equal "hexpm", dep.record["repo"]
end
end
it "finds direct dependencies" do
Dir.chdir(fixtures) do
dep = source.dependencies.detect { |d| d.name == "phoenix" }
path = File.absolute_path(File.join(".", "deps", "phoenix"))
assert dep
assert_equal path, dep.path
assert_equal "1.4.10", dep.version
assert_equal "mix", dep.record["type"]
# Mix-specific values
assert_equal "hex", dep.record["scm"]
assert_equal "hexpm", dep.record["repo"]
end
end
end
describe "Mix.SCM types" do
it "supports packages from hex" do
Dir.chdir(fixtures) do
dep = source.dependencies.detect { |d| d.name == "phoenix" }
# Mix-specific values
assert_equal "hex", dep.record["scm"]
assert_equal "hexpm", dep.record["repo"]
end
end
it "supports packages from git" do
Dir.chdir(fixtures) do
dep = source.dependencies.detect { |d| d.name == "gen_stage" }
# Mix-specific values
assert_equal "git", dep.record["scm"]
assert_equal "https://github.com/elixir-lang/gen_stage.git", dep.record["repo"]
end
end
end
describe "lockfile parser" do
describe "with an invalid lockfile" do
let(:lockfile) { %Q(%{\n"bad": {"entry"}\n}) }
it "raises a Licensed::Sources::Source::Error" do
assert_raises Licensed::Sources::Source::Error do
parse_lockfile_contents(lockfile)
end
end
end
describe "with a valid hex line" do
let(:lockfile) { %Q(%{\n"foo": {:hex, :foo, "1.2.3", "30ce04ab3175b6ad0bdce0035cba77bba68b813d523d1aac73d9781b4d193cf8", [:mix], [], "hexpm"},\n}) }
it "returns an entry for a valid package" do
expectation = [
{
name: "foo",
version: "1.2.3",
metadata: { "scm" => "hex", "repo" => "hexpm" }
}
]
assert_equal expectation, parse_lockfile_contents(lockfile)
end
end
describe "with a invalid hex line" do
let(:lockfile) { %Q(%{\n"absinthe": {:hex, 1, 2},\n}) }
it "returns an entry for an invalid package" do
expectation = [
{
name: "absinthe",
version: nil,
metadata: { "scm" => "hex" },
error: "Could not extract data from mix.lock line: \"absinthe\": {:hex, 1, 2},\n"
}
]
assert_equal expectation, parse_lockfile_contents(lockfile)
end
end
end
# Utility to parse the contents of a lockfile.
#
# contents - The contents of the mix.lock as a String.
#
# Returns the result of Licensed::Sources::Mix::LockfileParser#result.
def parse_lockfile_contents(contents)
Licensed::Sources::Mix::LockfileParser.new(contents.lines).result
end
end
end