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
|
# frozen_string_literal: true
# rubocop:todo all
require 'support/using_hash'
require 'runners/unified/error'
require 'runners/unified/entity_map'
require 'runners/unified/event_subscriber'
require 'runners/unified/test'
require 'runners/unified/test_group'
def define_unified_spec_tests(base_path, paths, expect_failure: false)
config_override :validate_update_replace, true
paths.each do |path|
basename = path[base_path.length+1...path.length]
context basename do
group = Unified::TestGroup.new(path)
if basename =~ /retryable|transaction/
require_wired_tiger
end
group.tests.each do |test|
context test.description do
if test.skip?
before do
skip test.skip_reason
end
end
before(:all) do
if SpecConfig.instance.retry_reads == false
skip "Tests are not applicable when legacy read retries are used"
end
if SpecConfig.instance.retry_writes == false
skip "Tests are not applicable when legacy write retries are used"
end
if ClusterConfig.instance.topology == :sharded
if test.require_multiple_mongoses? && SpecConfig.instance.addresses.length == 1
skip "Test requires multiple mongoses"
elsif test.require_single_mongos? && SpecConfig.instance.addresses.length > 1
# Many transaction spec tests that do not specifically deal with
# sharded transactions fail when run against a multi-mongos cluster
skip "Test requires single mongos"
end
end
end
if test.retry?
retry_test tries: 3
end
if expect_failure
it 'fails as expected' do
if test.group_reqs
unless test.group_reqs.any? { |r| r.satisfied? }
skip "Group requirements not satisfied"
end
end
if test.reqs
unless test.reqs.any? { |r| r.satisfied? }
skip "Requirements not satisfied"
end
end
begin
test.create_spec_entities
test.set_initial_data
begin
test.run
test.assert_outcome
test.assert_events
# HACK: other errors are possible and likely will need to
# be added here later as the tests evolve.
rescue Mongo::Error::OperationFailure::Family, Unified::Error::UnsupportedOperation, UsingHash::UsingHashKeyError, Unified::Error::EntityMissing
rescue => e
fail "Expected to raise Mongo::Error::OperationFailure or Unified::Error::UnsupportedOperation or UsingHash::UsingHashKeyError or Unified::Error::EntityMissing, got #{e.class}: #{e}"
else
fail "Expected to raise Mongo::Error::OperationFailure or Unified::Error::UnsupportedOperation or UsingHash::UsingHashKeyError or Unified::Error::EntityMissing, but no error was raised"
end
ensure
test.cleanup
end
end
else
it 'passes' do
if test.group_reqs
unless test.group_reqs.any? { |r| r.satisfied? }
skip "Group requirements not satisfied"
end
end
if test.reqs
unless test.reqs.any? { |r| r.satisfied? }
skip "Requirements not satisfied"
end
end
test.create_spec_entities
test.set_initial_data
test.run
test.assert_outcome
test.assert_events
test.cleanup
end
end
end
end
end
end
end
|