Fix build against mockito 2.x
This commit is contained in:
parent
ff59822c12
commit
711f167a20
73
0001-Fix-build-with-Mockito-2.x.patch
Normal file
73
0001-Fix-build-with-Mockito-2.x.patch
Normal file
@ -0,0 +1,73 @@
|
||||
From 60b89b4047b55aca0592243efd63fc9ac5f2c0f0 Mon Sep 17 00:00:00 2001
|
||||
From: Mat Booth <mat.booth@redhat.com>
|
||||
Date: Wed, 13 Feb 2019 16:09:35 +0000
|
||||
Subject: [PATCH] Fix build with Mockito 2.x
|
||||
|
||||
---
|
||||
.../maven_replacer_plugin/ReplacementProcessorTest.java | 1 -
|
||||
.../maven_replacer_plugin/ReplacerMojoIntegrationTest.java | 2 +-
|
||||
.../code/maven_replacer_plugin/ReplacerMojoTest.java | 7 ++++---
|
||||
3 files changed, 5 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/src/test/java/com/google/code/maven_replacer_plugin/ReplacementProcessorTest.java b/src/test/java/com/google/code/maven_replacer_plugin/ReplacementProcessorTest.java
|
||||
index 30632e7..83d088c 100644
|
||||
--- a/src/test/java/com/google/code/maven_replacer_plugin/ReplacementProcessorTest.java
|
||||
+++ b/src/test/java/com/google/code/maven_replacer_plugin/ReplacementProcessorTest.java
|
||||
@@ -43,7 +43,6 @@ public class ReplacementProcessorTest {
|
||||
public void setUp() throws Exception {
|
||||
when(fileUtils.readFile(FILE, ENCODING)).thenReturn(CONTENT);
|
||||
when(replacement.getToken()).thenReturn(TOKEN);
|
||||
- when(replacement.getValue()).thenReturn(VALUE);
|
||||
when(replacerFactory.create(replacement)).thenReturn(replacer);
|
||||
|
||||
processor = new ReplacementProcessor(fileUtils, replacerFactory);
|
||||
diff --git a/src/test/java/com/google/code/maven_replacer_plugin/ReplacerMojoIntegrationTest.java b/src/test/java/com/google/code/maven_replacer_plugin/ReplacerMojoIntegrationTest.java
|
||||
index 0e7aa64..6d99455 100644
|
||||
--- a/src/test/java/com/google/code/maven_replacer_plugin/ReplacerMojoIntegrationTest.java
|
||||
+++ b/src/test/java/com/google/code/maven_replacer_plugin/ReplacerMojoIntegrationTest.java
|
||||
@@ -7,7 +7,7 @@ import static org.hamcrest.Matchers.equalTo;
|
||||
import static org.junit.Assert.assertFalse;
|
||||
import static org.junit.Assert.assertTrue;
|
||||
import static org.mockito.Matchers.anyString;
|
||||
-import static org.mockito.Matchers.argThat;
|
||||
+import static org.mockito.hamcrest.MockitoHamcrest.argThat;
|
||||
import static org.mockito.Mockito.mock;
|
||||
import static org.mockito.Mockito.never;
|
||||
import static org.mockito.Mockito.verify;
|
||||
diff --git a/src/test/java/com/google/code/maven_replacer_plugin/ReplacerMojoTest.java b/src/test/java/com/google/code/maven_replacer_plugin/ReplacerMojoTest.java
|
||||
index 060f916..b53845c 100644
|
||||
--- a/src/test/java/com/google/code/maven_replacer_plugin/ReplacerMojoTest.java
|
||||
+++ b/src/test/java/com/google/code/maven_replacer_plugin/ReplacerMojoTest.java
|
||||
@@ -7,9 +7,10 @@ import static org.hamcrest.MatcherAssert.assertThat;
|
||||
import static org.hamcrest.Matchers.equalTo;
|
||||
import static org.junit.Assert.assertTrue;
|
||||
import static org.junit.Assert.fail;
|
||||
+import static org.mockito.Matchers.any;
|
||||
import static org.mockito.Matchers.anyInt;
|
||||
import static org.mockito.Matchers.anyString;
|
||||
-import static org.mockito.Matchers.argThat;
|
||||
+import static org.mockito.hamcrest.MockitoHamcrest.argThat;
|
||||
import static org.mockito.Matchers.eq;
|
||||
import static org.mockito.Matchers.isA;
|
||||
import static org.mockito.Mockito.mock;
|
||||
@@ -428,7 +429,7 @@ public class ReplacerMojoTest {
|
||||
|
||||
@Test (expected = MojoExecutionException.class)
|
||||
public void shouldRethrowIOExceptionsAsMojoExceptions() throws Exception {
|
||||
- when(fileUtils.readFile(anyString(), anyString())).thenThrow(new IOException());
|
||||
+ when(fileUtils.readFile((String)any(), (String)any())).thenThrow(new IOException());
|
||||
|
||||
mojo.setRegexFlags(regexFlags);
|
||||
mojo.setRegex(REGEX);
|
||||
@@ -442,7 +443,7 @@ public class ReplacerMojoTest {
|
||||
|
||||
@Test
|
||||
public void shouldNotThrowExceptionWhenIgnoringErrors() throws Exception {
|
||||
- when(fileUtils.readFile(anyString(), anyString())).thenThrow(new IOException());
|
||||
+ when(fileUtils.readFile((String)any(), (String)any())).thenThrow(new IOException());
|
||||
|
||||
mojo.setIgnoreErrors(true);
|
||||
mojo.setFile(FILE);
|
||||
--
|
||||
2.20.1
|
||||
|
@ -1,12 +1,14 @@
|
||||
Name: replacer
|
||||
Version: 1.6
|
||||
Release: 8%{?dist}
|
||||
Release: 9%{?dist}
|
||||
Summary: Replacer Maven Mojo
|
||||
License: MIT
|
||||
URL: https://github.com/beiliubei/maven-replacer-plugin
|
||||
# http://code.google.com/p/maven-replacer-plugin/
|
||||
Source0: https://github.com/beiliubei/maven-replacer-plugin/archive/%{version}.tar.gz
|
||||
|
||||
Patch0: 0001-Fix-build-with-Mockito-2.x.patch
|
||||
|
||||
BuildRequires: maven-local
|
||||
BuildRequires: mvn(commons-io:commons-io)
|
||||
BuildRequires: mvn(commons-lang:commons-lang)
|
||||
@ -36,6 +38,7 @@ This package contains javadoc for %{name}.
|
||||
|
||||
%prep
|
||||
%setup -q -n maven-replacer-plugin-%{version}
|
||||
%patch0 -p1
|
||||
|
||||
%pom_remove_plugin :dashboard-maven-plugin
|
||||
%pom_remove_plugin :maven-assembly-plugin
|
||||
@ -62,6 +65,9 @@ sed -i.hamcrest '/startsWith/d' src/test/java/com/google/code/maven_replacer_plu
|
||||
%license LICENSE
|
||||
|
||||
%changelog
|
||||
* Wed Feb 13 2019 Mat Booth <mat.booth@redhat.com> - 1.6-9
|
||||
- Fix build against mockito 2.x
|
||||
|
||||
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.6-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user