-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy pathcabal_test.rb
122 lines (106 loc) · 4.22 KB
/
cabal_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
# frozen_string_literal: true
require "test_helper"
require "tmpdir"
if Licensed::Shell.tool_available?("ghc")
describe Licensed::Sources::Cabal do
let(:fixtures) { File.expand_path("../../fixtures/cabal", __FILE__) }
let(:config) { Licensed::AppConfiguration.new({ "source_path" => Dir.pwd }) }
let(:source) { Licensed::Sources::Cabal.new(config) }
describe "enabled?" do
it "is true if cabal packages exist" do
Dir.chdir(fixtures) do
assert source.enabled?
end
end
it "is false if cabal packages exist" do
Dir.chdir(Dir.tmpdir) do
refute source.enabled?
end
end
end
describe "dependencies" do
let(:cabal_db) { "~/.cabal/store/ghc-<ghc_version>/package.db" }
let(:local_db) { File.join(fixtures, "dist-newstyle/packagedb/ghc-<ghc_version>") }
it "finds indirect dependencies" do
config["cabal"] = { "ghc_package_db" => ["global", "user", local_db, cabal_db] }
Dir.chdir(fixtures) do
dep = source.dependencies.detect { |d| d.name == "unliftio-core" }
assert dep
assert_equal "cabal", dep.record["type"]
assert dep.record["homepage"]
assert dep.record["summary"]
end
end
it "finds direct dependencies" do
config["cabal"] = { "ghc_package_db" => ["global", "user", local_db, cabal_db] }
Dir.chdir(fixtures) do
dep = source.dependencies.detect { |d| d.name == "fused-effects" }
assert dep
assert_equal "cabal", dep.record["type"]
assert dep.version
assert dep.record["summary"]
end
end
it "finds dependencies for executables" do
config["cabal"] = { "ghc_package_db" => ["global", "user", local_db, cabal_db] }
Dir.chdir(fixtures) do
dep = source.dependencies.detect { |d| d.name == "nats" }
assert dep
assert_equal "cabal", dep.record["type"]
assert dep.version
assert dep.record["summary"]
end
end
it "does not include the target project" do
config["cabal"] = { "ghc_package_db" => ["global", "user", local_db, cabal_db] }
Dir.chdir(fixtures) do
refute source.dependencies.detect { |d| d.name == "app" }
end
end
it "sets an error if a direct dependency isn't found" do
# look in a location that doesn't contain any packages
config["cabal"] = { "ghc_package_db" => [Dir.pwd] }
Dir.chdir(fixtures) do
dep = source.dependencies.detect { |d| d.name == "fused-effects" }
assert dep
assert_includes dep.errors, "package not found"
end
end
it "sets an error if an indirect dependency isn't found" do
# look in locations that don't contain the package
config["cabal"] = { "ghc_package_db" => [local_db, cabal_db, "user"] }
Dir.chdir(fixtures) do
dep = source.dependencies.detect { |d| d.name == "transformers" }
assert dep
assert_includes dep.errors, "package not found"
end
end
end
describe "package_db_args" do
it "recognizes global as a special arg" do
config["cabal"] = { "ghc_package_db" => ["global"] }
assert_equal ["--global"], source.package_db_args
end
it "recognizes user as a special arg" do
config["cabal"] = { "ghc_package_db" => ["user"] }
assert_equal ["--user"], source.package_db_args
end
it "allows paths relative to the repository root" do
config["cabal"] = { "ghc_package_db" => ["test/fixtures/cabal"] }
assert_equal ["--package-db=#{fixtures}"], source.package_db_args
end
it "allows expandable paths" do
config["cabal"] = { "ghc_package_db" => ["~"] }
assert_equal ["--package-db=#{File.expand_path("~")}"], source.package_db_args
end
it "allows absolute paths" do
config["cabal"] = { "ghc_package_db" => [fixtures] }
assert_equal ["--package-db=#{fixtures}"], source.package_db_args
end
it "does not allow paths that don't exist" do
config["cabal"] = { "ghc_package_db" => ["bad/path"] }
assert_equal [], source.package_db_args
end
end
end
end