summaryrefslogtreecommitdiff
path: root/jni/ruby/test/rubygems/test_gem_resolver_activation_request.rb
diff options
context:
space:
mode:
authorJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-16 18:49:26 +0900
committerJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-30 00:39:06 +0900
commitfcbf63e62c627deae76c1b8cb8c0876c536ed811 (patch)
tree64cb17de3f41a2b6fef2368028fbd00349946994 /jni/ruby/test/rubygems/test_gem_resolver_activation_request.rb
Fresh start
Diffstat (limited to 'jni/ruby/test/rubygems/test_gem_resolver_activation_request.rb')
-rw-r--r--jni/ruby/test/rubygems/test_gem_resolver_activation_request.rb73
1 files changed, 73 insertions, 0 deletions
diff --git a/jni/ruby/test/rubygems/test_gem_resolver_activation_request.rb b/jni/ruby/test/rubygems/test_gem_resolver_activation_request.rb
new file mode 100644
index 0000000..c9163e2
--- /dev/null
+++ b/jni/ruby/test/rubygems/test_gem_resolver_activation_request.rb
@@ -0,0 +1,73 @@
+require 'rubygems/test_case'
+
+class TestGemResolverActivationRequest < Gem::TestCase
+
+ def setup
+ super
+
+ @DR = Gem::Resolver
+
+ @dep = @DR::DependencyRequest.new dep('a', '>= 0'), nil
+
+ source = Gem::Source::Local.new
+ platform = Gem::Platform::RUBY
+
+ @a1 = @DR::IndexSpecification.new nil, 'a', v(1), source, platform
+ @a2 = @DR::IndexSpecification.new nil, 'a', v(2), source, platform
+ @a3 = @DR::IndexSpecification.new nil, 'a', v(3), source, platform
+
+ @req = @DR::ActivationRequest.new @a3, @dep, [@a1, @a2]
+ end
+
+ def test_development_eh
+ refute @req.development?
+
+ dep_req = @DR::DependencyRequest.new dep('a', '>= 0', :development), nil
+
+ act_req = @DR::ActivationRequest.new @a3, dep_req, [@a1, @a2]
+
+ assert act_req.development?
+ end
+
+ def test_inspect
+ assert_match 'a-3', @req.inspect
+ assert_match 'from a (>= 0)', @req.inspect
+ assert_match '(others possible: a-1, a-2)', @req.inspect
+ end
+
+ def test_inspect_legacy
+ req = @DR::ActivationRequest.new @a3, @dep, true
+
+ assert_match '(others possible)', req.inspect
+
+ req = @DR::ActivationRequest.new @a3, @dep, false
+
+ refute_match '(others possible)', req.inspect
+ end
+
+ def test_installed_eh
+ v_spec = Gem::Resolver::VendorSpecification.new nil, @a3
+
+ @req = @DR::ActivationRequest.new v_spec, @dep, [@a1, @a2]
+
+ assert @req.installed?
+ end
+
+ def test_others_possible_eh
+ assert @req.others_possible?
+
+ req = @DR::ActivationRequest.new @a3, @dep, []
+
+ refute req.others_possible?
+
+ req = @DR::ActivationRequest.new @a3, @dep, true
+
+ assert req.others_possible?
+
+ req = @DR::ActivationRequest.new @a3, @dep, false
+
+ refute req.others_possible?
+ end
+
+end
+