Compare commits

...

No commits in common. 'epel9' and 'i9' have entirely different histories.
epel9 ... i9

2
.gitignore vendored

@ -1 +1 @@
/mocha-*.gem
SOURCES/mocha-1.15.0-test.tar.gz

@ -0,0 +1 @@
bba0b9172e2ba37922da8cf59a285453a3090d4c SOURCES/mocha-1.15.0-test.tar.gz

Binary file not shown.

@ -0,0 +1,34 @@
From ae9fed4a9f2ef6267302494ae0edf515d4a8a921 Mon Sep 17 00:00:00 2001
From: James Mead <james@floehopper.org>
Date: Thu, 24 Nov 2022 13:26:15 +0000
Subject: [PATCH] DRY up regexp_matches test
---
test/unit/parameter_matchers/regexp_matches_test.rb | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/test/unit/parameter_matchers/regexp_matches_test.rb b/test/unit/parameter_matchers/regexp_matches_test.rb
index e0282c859..058baaccd 100644
--- a/test/unit/parameter_matchers/regexp_matches_test.rb
+++ b/test/unit/parameter_matchers/regexp_matches_test.rb
@@ -32,14 +32,18 @@ def test_should_not_match_on_empty_arguments
end
def test_should_not_raise_error_on_argument_that_does_not_respond_to_equals_tilde
- object_not_responding_to_equals_tilde = Class.new { undef =~ }.new
matcher = regexp_matches(/oo/)
assert_nothing_raised { matcher.matches?([object_not_responding_to_equals_tilde]) }
end
def test_should_not_match_on_argument_that_does_not_respond_to_equals_tilde
- object_not_responding_to_equals_tilde = Class.new { undef =~ }.new
matcher = regexp_matches(/oo/)
assert !matcher.matches?([object_not_responding_to_equals_tilde])
end
+
+ private
+
+ def object_not_responding_to_equals_tilde
+ Class.new { undef =~ }.new
+ end
end

@ -0,0 +1,27 @@
From 26b106a540ad57cd73401461451aa2711c541e9d Mon Sep 17 00:00:00 2001
From: James Mead <james@floehopper.org>
Date: Fri, 25 Nov 2022 09:04:43 +0000
Subject: [PATCH] Fix regexp_matches tests in Ruby v3.2
Object#~= has been removed from Ruby v3.2 [1].
Closes #590.
[1]: https://bugs.ruby-lang.org/issues/15231
---
.circleci/config.yml | 1 +
test/unit/parameter_matchers/regexp_matches_test.rb | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/test/unit/parameter_matchers/regexp_matches_test.rb b/test/unit/parameter_matchers/regexp_matches_test.rb
index 058baacc..20fb7c7c 100644
--- a/test/unit/parameter_matchers/regexp_matches_test.rb
+++ b/test/unit/parameter_matchers/regexp_matches_test.rb
@@ -44,6 +44,6 @@ def test_should_not_match_on_argument_that_does_not_respond_to_equals_tilde
private
def object_not_responding_to_equals_tilde
- Class.new { undef =~ }.new
+ Class.new { undef =~ if respond_to?(:=~) }.new
end
end

@ -1,35 +1,50 @@
%global gem_name mocha
Summary: Mocking and stubbing library
Name: rubygem-%{gem_name}
Version: 1.9.0
Release: 5%{?dist}
Name: rubygem-%{gem_name}
Version: 1.15.0
Release: 3%{?dist}
Summary: Mocking and stubbing library
License: MIT or Ruby or BSD
URL: https://mocha.jamesmead.org
Source0: http://rubygems.org/gems/%{gem_name}-%{version}.gem
BuildRequires: ruby(release)
BuildRequires: rubygems-devel
BuildRequires: ruby
BuildRequires: rubygem(metaclass)
BuildRequires: rubygem(introspection)
BuildRequires: rubygem(minitest)
BuildArch: noarch
URL: https://mocha.jamesmead.org
Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem
# git clone https://github.com/freerange/mocha.git && cd mocha
# git archive -v -o mocha-1.15.0-test.tar.gz v1.15.0 test/
Source1: %{gem_name}-%{version}-test.tar.gz
# https://github.com/freerange/mocha/commit/ae9fed4a9f2ef6267302494ae0edf515d4a8a921
# To apply Patch1 cleanly:
Patch0: %{name}-2.0.2-dry-up-regexp-test.patch
# https://github.com/freerange/mocha/issues/590
# https://github.com/freerange/mocha/commit/26b106a540ad57cd73401461451aa2711c541e9d
# Fix regexp test, ruby3.2 removes Object#=~
Patch1: %{name}-2.0.2-ruby32-fix-regexp-test.patch
BuildRequires: ruby(release)
BuildRequires: rubygems-devel
BuildRequires: ruby
#BuildRequires: rubygem(metaclass)
BuildRequires: rubygem(introspection)
BuildRequires: rubygem(minitest)
BuildArch: noarch
%description
Mocking and stubbing library with JMock/SchMock syntax, which allows mocking
and stubbing of methods on real (non-mock) classes.
%package doc
Summary: Documentation for %{name}
Requires: %{name} = %{version}-%{release}
BuildArch: noarch
%description doc
This package contains documentation for %{name}.
Documentation for %{name}.
%prep
%setup -q -n %{gem_name}-%{version}
%setup -q -n %{gem_name}-%{version} -b 1
(
cd %{_builddir}/test
%patch0 -p2
%patch1 -p2
)
%build
gem build ../%{gem_name}-%{version}.gemspec
@ -37,11 +52,12 @@ gem build ../%{gem_name}-%{version}.gemspec
%install
mkdir -p %{buildroot}%{gem_dir}
cp -pa .%{gem_dir}/* \
cp -a .%{gem_dir}/* \
%{buildroot}%{gem_dir}/
%check
pushd .%{gem_instdir}
ln -s %{_builddir}/test .
# Each part of test suite must be run separately, otherwise the test suite fails.
# https://github.com/freerange/mocha/issues/121
for kind in unit acceptance integration; do
@ -51,30 +67,45 @@ popd
%files
%exclude %{gem_instdir}/.*
%exclude %{gem_instdir}/init.rb
%doc %{gem_instdir}/COPYING.md
%doc %{gem_instdir}/README.md
%license %{gem_instdir}/COPYING.md
%license %{gem_instdir}/MIT-LICENSE.md
%doc %{gem_instdir}/RELEASE.md
%dir %{gem_instdir}
%{gem_instdir}/bin
%exclude %{gem_instdir}/init.rb
%{gem_libdir}
%exclude %{gem_cache}
%{gem_spec}
%files doc
%{gem_instdir}/Gemfile*
%doc %{gem_docdir}
%doc %{gem_instdir}/CONTRIBUTING.md
%{gem_instdir}/Gemfile
%doc %{gem_instdir}/README.md
%doc %{gem_instdir}/RELEASE.md
%{gem_instdir}/Rakefile
%{gem_instdir}/mocha.gemspec
%{gem_instdir}/gemfiles/
%{gem_instdir}/test/
%{gem_instdir}/docs/
%{gem_instdir}/yard-templates/
%changelog
* Thu Sep 21 2023 Arkady L. Shane <tigro@msvsphere-os.ru> - 1.15.0-3
- Rebuilt for MSVSphere 9.2
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.15.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
* Sat Nov 26 2022 Mamoru TASAKA <mtasaka@fedoraproject.org> - 1.15.0-2
- Backport upstream fix for ruby3.2 Object#=~ removal
* Tue Oct 11 2022 Vít Ondruch <vondruch@redhat.com> - 1.15.0-1
- Update to Mocha 1.1.0.
Resolves: rhbz#1778907
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.0-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.0-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.0-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild

@ -1,101 +0,0 @@
From a65ea1ed3dce43cbc2cc16b3660afd2cce3db33e Mon Sep 17 00:00:00 2001
From: James Mead <james@floehopper.org>
Date: Mon, 2 Mar 2015 19:37:21 +0000
Subject: [PATCH] As of Ruby v2.2, nil is frozen so these tests are irrelevant.
In all these scenarios in the latest versions of Ruby, a `Mocha::StubbingError`
will be raised with the message: "can't stub method on frozen object: nil".
This behaviour is already tested in the more generic `StubbingFrozenObjectTest`
and so it's safe to ignore these tests for the relevant versions of Ruby.
---
test/acceptance/stubbing_nil_test.rb | 68 +++++++++++++++++++-----------------
1 file changed, 35 insertions(+), 33 deletions(-)
diff --git a/test/acceptance/stubbing_nil_test.rb b/test/acceptance/stubbing_nil_test.rb
index ac163e7..f8c55cd 100644
--- a/test/acceptance/stubbing_nil_test.rb
+++ b/test/acceptance/stubbing_nil_test.rb
@@ -13,47 +13,49 @@ def teardown
teardown_acceptance_test
end
- def test_should_allow_stubbing_method_on_nil
- Mocha::Configuration.allow(:stubbing_method_on_nil)
- test_result = run_as_test do
- nil.stubs(:stubbed_method)
+ if RUBY_VERSION < '2.2.0'
+ def test_should_allow_stubbing_method_on_nil
+ Mocha::Configuration.allow(:stubbing_method_on_nil)
+ test_result = run_as_test do
+ nil.stubs(:stubbed_method)
+ end
+ assert_passed(test_result)
+ assert !@logger.warnings.include?("stubbing method on nil: nil.stubbed_method")
end
- assert_passed(test_result)
- assert !@logger.warnings.include?("stubbing method on nil: nil.stubbed_method")
- end
- def test_should_warn_on_stubbing_method_on_nil
- Mocha::Configuration.warn_when(:stubbing_method_on_nil)
- test_result = run_as_test do
- nil.stubs(:stubbed_method)
+ def test_should_warn_on_stubbing_method_on_nil
+ Mocha::Configuration.warn_when(:stubbing_method_on_nil)
+ test_result = run_as_test do
+ nil.stubs(:stubbed_method)
+ end
+ assert_passed(test_result)
+ assert @logger.warnings.include?("stubbing method on nil: nil.stubbed_method")
end
- assert_passed(test_result)
- assert @logger.warnings.include?("stubbing method on nil: nil.stubbed_method")
- end
- def test_should_prevent_stubbing_method_on_nil
- Mocha::Configuration.prevent(:stubbing_method_on_nil)
- test_result = run_as_test do
- nil.stubs(:stubbed_method)
+ def test_should_prevent_stubbing_method_on_nil
+ Mocha::Configuration.prevent(:stubbing_method_on_nil)
+ test_result = run_as_test do
+ nil.stubs(:stubbed_method)
+ end
+ assert_failed(test_result)
+ assert test_result.error_messages.include?("Mocha::StubbingError: stubbing method on nil: nil.stubbed_method")
end
- assert_failed(test_result)
- assert test_result.error_messages.include?("Mocha::StubbingError: stubbing method on nil: nil.stubbed_method")
- end
- def test_should_default_to_prevent_stubbing_method_on_non_mock_object
- test_result = run_as_test do
- nil.stubs(:stubbed_method)
+ def test_should_default_to_prevent_stubbing_method_on_non_mock_object
+ test_result = run_as_test do
+ nil.stubs(:stubbed_method)
+ end
+ assert_failed(test_result)
+ assert test_result.error_messages.include?("Mocha::StubbingError: stubbing method on nil: nil.stubbed_method")
end
- assert_failed(test_result)
- assert test_result.error_messages.include?("Mocha::StubbingError: stubbing method on nil: nil.stubbed_method")
- end
- def test_should_allow_stubbing_method_on_non_nil_object
- Mocha::Configuration.prevent(:stubbing_method_on_nil)
- object = Object.new
- test_result = run_as_test do
- object.stubs(:stubbed_method)
+ def test_should_allow_stubbing_method_on_non_nil_object
+ Mocha::Configuration.prevent(:stubbing_method_on_nil)
+ object = Object.new
+ test_result = run_as_test do
+ object.stubs(:stubbed_method)
+ end
+ assert_passed(test_result)
end
- assert_passed(test_result)
end
end

@ -1 +0,0 @@
SHA512 (mocha-1.9.0.gem) = 76aa6c1a59d98cf2e592b94785f102fae7d46923cd30494df944a322a6286fb854867ccb32c396f522008b8a0e368ff115693ec6dc63d7cbe84fa26a3a42d9e6
Loading…
Cancel
Save