Compare commits
No commits in common. "stream-javapackages-tools-202201-rhel-8.9.0" and "c8-stream-201902" have entirely different histories.
stream-jav
...
c8-stream-
8
.gitignore
vendored
8
.gitignore
vendored
@ -1,7 +1 @@
|
|||||||
/mockito-*.tar.xz
|
SOURCES/mockito-3.1.2.tar.xz
|
||||||
/.build-*.log
|
|
||||||
/noarch/
|
|
||||||
/*.src.rpm
|
|
||||||
/mockito-3.5.13.tar.gz
|
|
||||||
/mockito-3.7.13.tar.gz
|
|
||||||
/mockito-3.12.4.tar.gz
|
|
||||||
|
1
.mockito.metadata
Normal file
1
.mockito.metadata
Normal file
@ -0,0 +1 @@
|
|||||||
|
15683d23b64ec2b289dccd9898efcbbde7741765 SOURCES/mockito-3.1.2.tar.xz
|
20
SOURCES/make-mockito-sourcetarball.sh
Executable file
20
SOURCES/make-mockito-sourcetarball.sh
Executable file
@ -0,0 +1,20 @@
|
|||||||
|
#!/bin/bash -ex
|
||||||
|
|
||||||
|
VERSION="$(sed -n 's/Version:\s*//p' *.spec)"
|
||||||
|
SRCDIR=mockito-${VERSION}
|
||||||
|
|
||||||
|
git clone https://github.com/mockito/mockito.git ${SRCDIR}
|
||||||
|
pushd $SRCDIR
|
||||||
|
git archive --format=tar --prefix=${SRCDIR}/ v${VERSION} > ../${SRCDIR}.tar
|
||||||
|
popd
|
||||||
|
|
||||||
|
rm -rf ${SRCDIR}
|
||||||
|
|
||||||
|
tar -xf ${SRCDIR}.tar
|
||||||
|
rm ${SRCDIR}.tar
|
||||||
|
pushd ${SRCDIR}
|
||||||
|
find -name '*.jar' -delete
|
||||||
|
rm -rf gradlew gradlew.bat src/javadoc
|
||||||
|
popd
|
||||||
|
|
||||||
|
tar -cvJf mockito-${VERSION}.tar.xz ${SRCDIR}
|
@ -20,19 +20,19 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.bytebuddy</groupId>
|
<groupId>net.bytebuddy</groupId>
|
||||||
<artifactId>byte-buddy</artifactId>
|
<artifactId>byte-buddy</artifactId>
|
||||||
<version>1.11.13</version>
|
<version>1.9.3</version>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.bytebuddy</groupId>
|
<groupId>net.bytebuddy</groupId>
|
||||||
<artifactId>byte-buddy-agent</artifactId>
|
<artifactId>byte-buddy-agent</artifactId>
|
||||||
<version>1.11.13</version>
|
<version>1.9.3</version>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.objenesis</groupId>
|
<groupId>org.objenesis</groupId>
|
||||||
<artifactId>objenesis</artifactId>
|
<artifactId>objenesis</artifactId>
|
||||||
<version>3.2</version>
|
<version>3.1</version>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
@ -50,13 +50,13 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>junit</groupId>
|
<groupId>junit</groupId>
|
||||||
<artifactId>junit</artifactId>
|
<artifactId>junit</artifactId>
|
||||||
<version>4.13.2</version>
|
<version>4.12</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.assertj</groupId>
|
<groupId>org.assertj</groupId>
|
||||||
<artifactId>assertj-core</artifactId>
|
<artifactId>assertj-core</artifactId>
|
||||||
<version>3.20.2</version>
|
<version>3.13.2</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
@ -90,6 +90,26 @@
|
|||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>exec-maven-plugin</artifactId>
|
||||||
|
<version>1.6.0</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<phase>process-classes</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>exec</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
<configuration>
|
||||||
|
<executable>cp</executable>
|
||||||
|
<arguments>
|
||||||
|
<argument>${project.build.sourceDirectory}/org/mockito/internal/creation/bytebuddy/inject/MockMethodDispatcher.class</argument>
|
||||||
|
<argument>${project.build.outputDirectory}/org/mockito/internal/creation/bytebuddy/inject/MockMethodDispatcher.raw</argument>
|
||||||
|
</arguments>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-jar-plugin</artifactId>
|
<artifactId>maven-jar-plugin</artifactId>
|
76
SOURCES/use-unbundled-asm.patch
Normal file
76
SOURCES/use-unbundled-asm.patch
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
diff --git a/src/main/java/org/mockito/internal/creation/bytebuddy/InlineBytecodeGenerator.java b/src/main/java/org/mockito/internal/creation/bytebuddy/InlineBytecodeGenerator.java
|
||||||
|
index 34b1e89..326a64f 100644
|
||||||
|
--- a/src/main/java/org/mockito/internal/creation/bytebuddy/InlineBytecodeGenerator.java
|
||||||
|
+++ b/src/main/java/org/mockito/internal/creation/bytebuddy/InlineBytecodeGenerator.java
|
||||||
|
@@ -18,8 +18,8 @@ import net.bytebuddy.dynamic.ClassFileLocator;
|
||||||
|
import net.bytebuddy.dynamic.scaffold.MethodGraph;
|
||||||
|
import net.bytebuddy.dynamic.scaffold.TypeValidation;
|
||||||
|
import net.bytebuddy.implementation.Implementation;
|
||||||
|
-import net.bytebuddy.jar.asm.ClassVisitor;
|
||||||
|
-import net.bytebuddy.jar.asm.MethodVisitor;
|
||||||
|
+import org.objectweb.asm.ClassVisitor;
|
||||||
|
+import org.objectweb.asm.MethodVisitor;
|
||||||
|
import net.bytebuddy.matcher.ElementMatchers;
|
||||||
|
import net.bytebuddy.pool.TypePool;
|
||||||
|
import net.bytebuddy.utility.OpenedClassReader;
|
||||||
|
diff --git a/src/test/java/org/mockito/internal/creation/bytebuddy/AbstractByteBuddyMockMakerTest.java b/src/test/java/org/mockito/internal/creation/bytebuddy/AbstractByteBuddyMockMakerTest.java
|
||||||
|
index 2b08c10..a19ffa1 100644
|
||||||
|
--- a/src/test/java/org/mockito/internal/creation/bytebuddy/AbstractByteBuddyMockMakerTest.java
|
||||||
|
+++ b/src/test/java/org/mockito/internal/creation/bytebuddy/AbstractByteBuddyMockMakerTest.java
|
||||||
|
@@ -19,6 +19,7 @@ import org.mockito.plugins.MockMaker;
|
||||||
|
import org.mockito.stubbing.Answer;
|
||||||
|
import org.mockitoutil.ClassLoaders;
|
||||||
|
import org.mockitoutil.SimpleSerializationUtil;
|
||||||
|
+import org.objectweb.asm.ClassVisitor;
|
||||||
|
import org.objenesis.ObjenesisStd;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
@@ -138,7 +139,7 @@ public abstract class AbstractByteBuddyMockMakerTest<MM extends MockMaker> {
|
||||||
|
public void instantiate_fine_when_objenesis_on_the_classpath() throws Exception {
|
||||||
|
// given
|
||||||
|
ClassLoader classpath_with_objenesis = ClassLoaders.excludingClassLoader()
|
||||||
|
- .withCodeSourceUrlOf(Mockito.class, ByteBuddy.class, ObjenesisStd.class)
|
||||||
|
+ .withCodeSourceUrlOf(Mockito.class, ByteBuddy.class, ObjenesisStd.class, ClassVisitor.class)
|
||||||
|
.withCodeSourceUrlOf(coverageTool())
|
||||||
|
.build();
|
||||||
|
|
||||||
|
diff --git a/src/test/java/org/mockito/internal/junit/JUnitRuleTest.java b/src/test/java/org/mockito/internal/junit/JUnitRuleTest.java
|
||||||
|
index 7d5968d..f5c1644 100644
|
||||||
|
--- a/src/test/java/org/mockito/internal/junit/JUnitRuleTest.java
|
||||||
|
+++ b/src/test/java/org/mockito/internal/junit/JUnitRuleTest.java
|
||||||
|
@@ -4,6 +4,7 @@
|
||||||
|
*/
|
||||||
|
package org.mockito.internal.junit;
|
||||||
|
|
||||||
|
+import org.junit.Ignore;
|
||||||
|
import org.junit.Rule;
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.mockito.Mock;
|
||||||
|
@@ -41,6 +42,7 @@ public class JUnitRuleTest {
|
||||||
|
|
||||||
|
@SuppressWarnings({"CheckReturnValue", "MockitoUsage"})
|
||||||
|
@Test
|
||||||
|
+ @Ignore
|
||||||
|
public void does_not_check_invalid_mockito_usage_on_failure() throws Throwable {
|
||||||
|
//This intended behavior is questionable
|
||||||
|
//However, it was like that since the beginning of JUnit rule support
|
||||||
|
diff --git a/src/test/java/org/mockitointegration/NoJUnitDependenciesTest.java b/src/test/java/org/mockitointegration/NoJUnitDependenciesTest.java
|
||||||
|
index 85e0113..64f2083 100644
|
||||||
|
--- a/src/test/java/org/mockitointegration/NoJUnitDependenciesTest.java
|
||||||
|
+++ b/src/test/java/org/mockitointegration/NoJUnitDependenciesTest.java
|
||||||
|
@@ -12,6 +12,7 @@ import org.junit.Test;
|
||||||
|
import org.mockito.Mockito;
|
||||||
|
import org.mockito.internal.configuration.plugins.Plugins;
|
||||||
|
import org.mockitoutil.ClassLoaders;
|
||||||
|
+import org.objectweb.asm.ClassVisitor;
|
||||||
|
import org.objenesis.Objenesis;
|
||||||
|
|
||||||
|
import java.util.Set;
|
||||||
|
@@ -30,6 +31,7 @@ public class NoJUnitDependenciesTest {
|
||||||
|
Matcher.class,
|
||||||
|
ByteBuddy.class,
|
||||||
|
ByteBuddyAgent.class,
|
||||||
|
+ ClassVisitor.class,
|
||||||
|
Objenesis.class
|
||||||
|
)
|
||||||
|
.withCodeSourceUrlOf(coverageTool())
|
@ -1,46 +1,33 @@
|
|||||||
%bcond_with bootstrap
|
|
||||||
|
|
||||||
Name: mockito
|
Name: mockito
|
||||||
Version: 3.12.4
|
Version: 3.1.2
|
||||||
Release: 5%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: Tasty mocking framework for unit tests in Java
|
Summary: Tasty mocking framework for unit tests in Java
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://site.mockito.org/
|
URL: https://site.mockito.org/
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
ExclusiveArch: %{java_arches} noarch
|
|
||||||
|
|
||||||
# ./generate-tarball.sh
|
# Source tarball and the script to generate it
|
||||||
Source0: %{name}-%{version}.tar.gz
|
Source0: %{name}-%{version}.tar.xz
|
||||||
Source1: generate-tarball.sh
|
Source1: make-mockito-sourcetarball.sh
|
||||||
|
|
||||||
# A custom build script to allow building with maven instead of gradle
|
# A custom build script to allow building with maven instead of gradle
|
||||||
Source2: mockito-core.pom
|
Source2: mockito-core.pom
|
||||||
|
|
||||||
# Maven central POMs for subprojects
|
|
||||||
Source3: https://repo1.maven.org/maven2/org/mockito/mockito-inline/%{version}/mockito-inline-%{version}.pom
|
|
||||||
Source4: https://repo1.maven.org/maven2/org/mockito/mockito-junit-jupiter/%{version}/mockito-junit-jupiter-%{version}.pom
|
|
||||||
|
|
||||||
# Mockito expects byte-buddy to have a shaded/bundled version of ASM, but
|
# Mockito expects byte-buddy to have a shaded/bundled version of ASM, but
|
||||||
# we don't bundle in Fedora, so this patch makes mockito use ASM explicitly
|
# we don't bundle in Fedora, so this patch makes mockito use ASM explicitly
|
||||||
Patch0: use-unbundled-asm.patch
|
Patch0: use-unbundled-asm.patch
|
||||||
|
|
||||||
%if %{with bootstrap}
|
|
||||||
BuildRequires: javapackages-bootstrap
|
|
||||||
%else
|
|
||||||
BuildRequires: maven-local
|
BuildRequires: maven-local
|
||||||
BuildRequires: mvn(biz.aQute.bnd:biz.aQute.bnd)
|
|
||||||
BuildRequires: mvn(junit:junit)
|
BuildRequires: mvn(junit:junit)
|
||||||
BuildRequires: mvn(net.bytebuddy:byte-buddy)
|
BuildRequires: mvn(net.bytebuddy:byte-buddy)
|
||||||
BuildRequires: mvn(net.bytebuddy:byte-buddy-agent)
|
BuildRequires: mvn(net.bytebuddy:byte-buddy-agent)
|
||||||
BuildRequires: mvn(org.apache.felix:maven-bundle-plugin)
|
BuildRequires: mvn(org.apache.felix:maven-bundle-plugin)
|
||||||
BuildRequires: mvn(org.apiguardian:apiguardian-api)
|
|
||||||
BuildRequires: mvn(org.assertj:assertj-core)
|
BuildRequires: mvn(org.assertj:assertj-core)
|
||||||
|
BuildRequires: mvn(org.codehaus.mojo:exec-maven-plugin)
|
||||||
BuildRequires: mvn(org.hamcrest:hamcrest)
|
BuildRequires: mvn(org.hamcrest:hamcrest)
|
||||||
BuildRequires: mvn(org.junit.jupiter:junit-jupiter-api)
|
|
||||||
BuildRequires: mvn(org.objenesis:objenesis)
|
BuildRequires: mvn(org.objenesis:objenesis)
|
||||||
BuildRequires: mvn(org.opentest4j:opentest4j)
|
BuildRequires: mvn(org.opentest4j:opentest4j)
|
||||||
BuildRequires: mvn(org.ow2.asm:asm)
|
BuildRequires: mvn(org.ow2.asm:asm)
|
||||||
%endif
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Mockito is a mocking framework that tastes really good. It lets you write
|
Mockito is a mocking framework that tastes really good. It lets you write
|
||||||
@ -54,39 +41,14 @@ Summary: Javadocs for %{name}
|
|||||||
%description javadoc
|
%description javadoc
|
||||||
This package contains the API documentation for %{name}.
|
This package contains the API documentation for %{name}.
|
||||||
|
|
||||||
%package inline
|
|
||||||
Summary: Mockito preconfigured inline mock maker
|
|
||||||
Requires: %{name} = %{version}-%{release}
|
|
||||||
|
|
||||||
%description inline
|
|
||||||
Mockito preconfigured inline mock maker (intermediate and to be
|
|
||||||
superseded by automatic usage in a future version).
|
|
||||||
|
|
||||||
%if %{without bootstrap}
|
|
||||||
%package junit-jupiter
|
|
||||||
Summary: Mockito JUnit 5 support
|
|
||||||
Requires: %{name} = %{version}-%{release}
|
|
||||||
|
|
||||||
%description junit-jupiter
|
|
||||||
Mockito JUnit 5 support.
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -p1
|
%setup -q
|
||||||
|
%patch0 -p1
|
||||||
# Disable failing test
|
|
||||||
# TODO check status: https://github.com/mockito/mockito/issues/2162
|
|
||||||
sed -i '/add_listeners_concurrently_sanity_check/i @org.junit.Ignore' src/test/java/org/mockitousage/debugging/StubbingLookupListenerCallbackTest.java
|
|
||||||
|
|
||||||
# Use our custom build script
|
# Use our custom build script
|
||||||
sed -e 's/@VERSION@/%{version}/' %{SOURCE2} > pom.xml
|
sed -e 's/@VERSION@/%{version}/' %{SOURCE2} > pom.xml
|
||||||
|
|
||||||
# Workaround easymock incompatibility with Java 17 that should be fixed
|
# OGGi metadata configuration
|
||||||
# in easymock 4.4: https://github.com/easymock/easymock/issues/274
|
|
||||||
%pom_add_plugin :maven-surefire-plugin . "<configuration>
|
|
||||||
<argLine>--add-opens=java.base/sun.reflect.generics.reflectiveObjects=ALL-UNNAMED</argLine></configuration>"
|
|
||||||
|
|
||||||
# OSGi metadata configuration
|
|
||||||
cat > osgi.bnd <<EOF
|
cat > osgi.bnd <<EOF
|
||||||
Automatic-Module-Name: org.mockito
|
Automatic-Module-Name: org.mockito
|
||||||
Bundle-SymbolicName: org.mockito
|
Bundle-SymbolicName: org.mockito
|
||||||
@ -96,50 +58,14 @@ Private-Package: org.mockito.*
|
|||||||
-removeheaders: Bnd-LastModified,Include-Resource,Private-Package
|
-removeheaders: Bnd-LastModified,Include-Resource,Private-Package
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
# OSGi metadata configuration for the junit-jupiter jar
|
|
||||||
cat > osgi-junit-jupiter.bnd <<EOF
|
|
||||||
Automatic-Module-Name: org.mockito.junit.jupiter
|
|
||||||
Bundle-SymbolicName: org.mockito.junit-jupiter
|
|
||||||
Bundle-Name: Mockito Extension Library for JUnit 5.
|
|
||||||
Import-Package: org.junit.jupiter.api.extension;version="[5.7,6)",org.junit.platform.commons.support;version="[1.7,2)",org.mockito*;version="%{version}",*
|
|
||||||
-removeheaders: Bnd-LastModified,Include-Resource
|
|
||||||
Export-Package: org.mockito.junit.jupiter;version="%{version}";uses:="org.junit.jupiter.api.extension,org.mockito.quality"
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# Compatibility alias
|
# Compatibility alias
|
||||||
%mvn_alias org.%{name}:%{name}-core org.%{name}:%{name}-all
|
%mvn_alias org.%{name}:%{name}-core org.%{name}:%{name}-all
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# See the usage of exec-maven-plugin in the pom
|
# See the usage of exec-maven-plugin in the pom
|
||||||
mkdir -p target/classes/
|
javac src/main/java/org/mockito/internal/creation/bytebuddy/inject/MockMethodDispatcher.java
|
||||||
javac --release 8 -d target/classes/ src/main/java/org/mockito/internal/creation/bytebuddy/inject/MockMethodDispatcher.java
|
|
||||||
mv target/classes/org/mockito/internal/creation/bytebuddy/inject/MockMethodDispatcher.{class,raw}
|
|
||||||
|
|
||||||
%mvn_build -f -- -Dproject.build.sourceEncoding=UTF-8
|
%mvn_build -- -Dproject.build.sourceEncoding=UTF-8
|
||||||
|
|
||||||
# Build the inline subproject
|
|
||||||
cd subprojects/inline/src/main/resources
|
|
||||||
jar cf ../../../../../target/mockito-inline.jar mockito-extensions
|
|
||||||
cd -
|
|
||||||
%mvn_artifact %{SOURCE3} target/mockito-inline.jar
|
|
||||||
%mvn_package org.mockito:mockito-inline inline
|
|
||||||
|
|
||||||
%if %{without bootstrap}
|
|
||||||
# Build the junit-jupiter subproject
|
|
||||||
cd subprojects/junit-jupiter
|
|
||||||
mkdir -p target/classes/
|
|
||||||
CLASSPATH=$(build-classpath apiguardian junit5/junit-jupiter-api junit5/junit-platform-commons)
|
|
||||||
javac --release 8 -d target/classes/ \
|
|
||||||
-cp ../../target/mockito-core-%{version}.jar:$CLASSPATH \
|
|
||||||
src/main/java/org/mockito/junit/jupiter/*.java
|
|
||||||
jar -cf ../../target/mockito-junit-jupiter.unwrapped.jar -C target/classes org
|
|
||||||
cd -
|
|
||||||
bnd wrap --properties osgi-junit-jupiter.bnd --version %{version} \
|
|
||||||
--output target/mockito-junit-jupiter.jar \
|
|
||||||
target/mockito-junit-jupiter.unwrapped.jar
|
|
||||||
%mvn_artifact %{SOURCE4} target/mockito-junit-jupiter.jar
|
|
||||||
%mvn_package org.mockito:mockito-junit-jupiter junit-jupiter
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%mvn_install
|
%mvn_install
|
||||||
@ -148,76 +74,10 @@ bnd wrap --properties osgi-junit-jupiter.bnd --version %{version} \
|
|||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc README.md doc/design-docs/custom-argument-matching.md
|
%doc README.md doc/design-docs/custom-argument-matching.md
|
||||||
|
|
||||||
%files inline -f .mfiles-inline
|
|
||||||
|
|
||||||
%if %{without bootstrap}
|
|
||||||
%files junit-jupiter -f .mfiles-junit-jupiter
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%files javadoc -f .mfiles-javadoc
|
%files javadoc -f .mfiles-javadoc
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.12.4-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Apr 09 2022 Didik Supriadi <didiksupriadi41@fedoraproject.org> - 3.12.4-4
|
|
||||||
- Set javac compiler release to Java 8
|
|
||||||
|
|
||||||
* Sat Feb 05 2022 Jiri Vanek <jvanek@redhat.com> - 3.12.4-3
|
|
||||||
- Rebuilt for java-17-openjdk as system jdk
|
|
||||||
|
|
||||||
* Thu Jan 27 2022 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.12.4-2
|
|
||||||
- Don't build mockito-junit-jupiter in bootstrap mode
|
|
||||||
|
|
||||||
* Sat Jan 22 2022 Jerry James <loganjerry@gmail.com> - 3.12.4-1
|
|
||||||
- Version 3.12.4
|
|
||||||
- Add inline and junit-jupiter subpackages
|
|
||||||
- Drop OpenJDK 17 workarounds
|
|
||||||
|
|
||||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.7.13-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Nov 03 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.7.13-4
|
|
||||||
- Workaround build issue with OpenJDK 17
|
|
||||||
|
|
||||||
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.7.13-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon May 17 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.7.13-2
|
|
||||||
- Bootstrap build
|
|
||||||
- Non-bootstrap build
|
|
||||||
|
|
||||||
* Thu Feb 04 2021 Marian Koncek <mkoncek@redhat.com> - 3.7.13-1
|
|
||||||
- Update to upstream version 3.7.13
|
|
||||||
|
|
||||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.13-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Oct 9 2020 Stuart Gathman <stuart@gathman.org> - 3.5.13-1
|
|
||||||
- Update to version 3.5.13
|
|
||||||
|
|
||||||
* Wed Sep 30 2020 Marian Koncek <mkoncek@redhat.com> - 3.5.13-1
|
|
||||||
- Update to ustream version 3.5.13
|
|
||||||
|
|
||||||
* Sun Aug 23 2020 Jerry James <loganjerry@gmail.com> - 3.5.5-1
|
|
||||||
- Update to version 3.5.5
|
|
||||||
|
|
||||||
* Fri Aug 14 2020 Jerry James <loganjerry@gmail.com> - 2.28.2-1
|
|
||||||
- Update to version 2.28.2
|
|
||||||
|
|
||||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.23.9-8
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jul 22 2020 Marian Koncek <mkoncek@redhat.com> - 3.4.5-1
|
|
||||||
- Update to upstream version 3.4.5
|
|
||||||
|
|
||||||
* Sat Jul 11 2020 Jiri Vanek <jvanek@redhat.com> - 2.23.9-7
|
|
||||||
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
|
|
||||||
|
|
||||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.23.9-6
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.1.2-2
|
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.1.2-2
|
||||||
- Mass rebuild for javapackages-tools 201902
|
- Mass rebuild for javapackages-tools 201902
|
||||||
|
|
||||||
@ -227,15 +87,9 @@ bnd wrap --properties osgi-junit-jupiter.bnd --version %{version} \
|
|||||||
* Thu Sep 19 2019 Marian Koncek <mkoncek@redhat.com> - 3.0.8-1
|
* Thu Sep 19 2019 Marian Koncek <mkoncek@redhat.com> - 3.0.8-1
|
||||||
- Update to upstream version 3.0.8
|
- Update to upstream version 3.0.8
|
||||||
|
|
||||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.23.9-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.23.9-4
|
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.23.9-4
|
||||||
- Mass rebuild for javapackages-tools 201901
|
- Mass rebuild for javapackages-tools 201901
|
||||||
|
|
||||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.23.9-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Dec 12 2018 Mat Booth <mat.booth@redhat.com> - 2.23.9-3
|
* Wed Dec 12 2018 Mat Booth <mat.booth@redhat.com> - 2.23.9-3
|
||||||
- Set the source encoding for the build
|
- Set the source encoding for the build
|
||||||
|
|
@ -1,22 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
set -e
|
|
||||||
|
|
||||||
name=mockito
|
|
||||||
version="$(sed -n 's/Version:\s*//p' *.spec)"
|
|
||||||
|
|
||||||
# RETRIEVE
|
|
||||||
wget "https://github.com/mockito/mockito/archive/v${version}.tar.gz" -O "${name}-${version}.orig.tar.gz"
|
|
||||||
|
|
||||||
rm -rf tarball-tmp
|
|
||||||
mkdir tarball-tmp
|
|
||||||
pushd tarball-tmp
|
|
||||||
tar -xf "../${name}-${version}.orig.tar.gz"
|
|
||||||
|
|
||||||
# CLEAN TARBALL
|
|
||||||
find -name '*.jar' -delete
|
|
||||||
find -name '*.class' -delete
|
|
||||||
rm -rf gradlew gradlew.bat src/javadoc
|
|
||||||
|
|
||||||
tar -czf "../${name}-${version}.tar.gz" *
|
|
||||||
popd
|
|
||||||
rm -r tarball-tmp "${name}-${version}.orig.tar.gz"
|
|
@ -1,71 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>org.mockito</groupId>
|
|
||||||
<artifactId>mockito-inline</artifactId>
|
|
||||||
<version>3.12.4</version>
|
|
||||||
<name>mockito-inline</name>
|
|
||||||
<description>Mockito preconfigured inline mock maker (intermediate and to be superseeded by automatic usage in a future version)</description>
|
|
||||||
<url>https://github.com/mockito/mockito</url>
|
|
||||||
<licenses>
|
|
||||||
<license>
|
|
||||||
<name>The MIT License</name>
|
|
||||||
<url>https://github.com/mockito/mockito/blob/main/LICENSE</url>
|
|
||||||
<distribution>repo</distribution>
|
|
||||||
</license>
|
|
||||||
</licenses>
|
|
||||||
<developers>
|
|
||||||
<developer>
|
|
||||||
<id>mockitoguy</id>
|
|
||||||
<name>Szczepan Faber</name>
|
|
||||||
<url>https://github.com/mockitoguy</url>
|
|
||||||
<roles>
|
|
||||||
<role>Core developer</role>
|
|
||||||
</roles>
|
|
||||||
</developer>
|
|
||||||
<developer>
|
|
||||||
<id>bric3</id>
|
|
||||||
<name>Brice Dutheil</name>
|
|
||||||
<url>https://github.com/bric3</url>
|
|
||||||
<roles>
|
|
||||||
<role>Core developer</role>
|
|
||||||
</roles>
|
|
||||||
</developer>
|
|
||||||
<developer>
|
|
||||||
<id>raphw</id>
|
|
||||||
<name>Rafael Winterhalter</name>
|
|
||||||
<url>https://github.com/raphw</url>
|
|
||||||
<roles>
|
|
||||||
<role>Core developer</role>
|
|
||||||
</roles>
|
|
||||||
</developer>
|
|
||||||
<developer>
|
|
||||||
<id>TimvdLippe</id>
|
|
||||||
<name>Tim van der Lippe</name>
|
|
||||||
<url>https://github.com/TimvdLippe</url>
|
|
||||||
<roles>
|
|
||||||
<role>Core developer</role>
|
|
||||||
</roles>
|
|
||||||
</developer>
|
|
||||||
</developers>
|
|
||||||
<scm>
|
|
||||||
<url>https://github.com/mockito/mockito.git</url>
|
|
||||||
</scm>
|
|
||||||
<issueManagement>
|
|
||||||
<system>GitHub issues</system>
|
|
||||||
<url>https://github.com/mockito/mockito/issues</url>
|
|
||||||
</issueManagement>
|
|
||||||
<ciManagement>
|
|
||||||
<system>GH Actions</system>
|
|
||||||
<url>https://github.com/mockito/mockito/actions</url>
|
|
||||||
</ciManagement>
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.mockito</groupId>
|
|
||||||
<artifactId>mockito-core</artifactId>
|
|
||||||
<version>3.12.4</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
</project>
|
|
@ -1,77 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>org.mockito</groupId>
|
|
||||||
<artifactId>mockito-junit-jupiter</artifactId>
|
|
||||||
<version>3.12.4</version>
|
|
||||||
<name>mockito-junit-jupiter</name>
|
|
||||||
<description>Mockito JUnit 5 support</description>
|
|
||||||
<url>https://github.com/mockito/mockito</url>
|
|
||||||
<licenses>
|
|
||||||
<license>
|
|
||||||
<name>The MIT License</name>
|
|
||||||
<url>https://github.com/mockito/mockito/blob/main/LICENSE</url>
|
|
||||||
<distribution>repo</distribution>
|
|
||||||
</license>
|
|
||||||
</licenses>
|
|
||||||
<developers>
|
|
||||||
<developer>
|
|
||||||
<id>mockitoguy</id>
|
|
||||||
<name>Szczepan Faber</name>
|
|
||||||
<url>https://github.com/mockitoguy</url>
|
|
||||||
<roles>
|
|
||||||
<role>Core developer</role>
|
|
||||||
</roles>
|
|
||||||
</developer>
|
|
||||||
<developer>
|
|
||||||
<id>bric3</id>
|
|
||||||
<name>Brice Dutheil</name>
|
|
||||||
<url>https://github.com/bric3</url>
|
|
||||||
<roles>
|
|
||||||
<role>Core developer</role>
|
|
||||||
</roles>
|
|
||||||
</developer>
|
|
||||||
<developer>
|
|
||||||
<id>raphw</id>
|
|
||||||
<name>Rafael Winterhalter</name>
|
|
||||||
<url>https://github.com/raphw</url>
|
|
||||||
<roles>
|
|
||||||
<role>Core developer</role>
|
|
||||||
</roles>
|
|
||||||
</developer>
|
|
||||||
<developer>
|
|
||||||
<id>TimvdLippe</id>
|
|
||||||
<name>Tim van der Lippe</name>
|
|
||||||
<url>https://github.com/TimvdLippe</url>
|
|
||||||
<roles>
|
|
||||||
<role>Core developer</role>
|
|
||||||
</roles>
|
|
||||||
</developer>
|
|
||||||
</developers>
|
|
||||||
<scm>
|
|
||||||
<url>https://github.com/mockito/mockito.git</url>
|
|
||||||
</scm>
|
|
||||||
<issueManagement>
|
|
||||||
<system>GitHub issues</system>
|
|
||||||
<url>https://github.com/mockito/mockito/issues</url>
|
|
||||||
</issueManagement>
|
|
||||||
<ciManagement>
|
|
||||||
<system>GH Actions</system>
|
|
||||||
<url>https://github.com/mockito/mockito/actions</url>
|
|
||||||
</ciManagement>
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.mockito</groupId>
|
|
||||||
<artifactId>mockito-core</artifactId>
|
|
||||||
<version>3.12.4</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.junit.jupiter</groupId>
|
|
||||||
<artifactId>junit-jupiter-api</artifactId>
|
|
||||||
<version>5.7.2</version>
|
|
||||||
<scope>runtime</scope>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
</project>
|
|
1
sources
1
sources
@ -1 +0,0 @@
|
|||||||
SHA512 (mockito-3.12.4.tar.gz) = 3c0bc50a533bfd6626b993567fb585666a839ed408d51bfdd0b6d0b62a1fe6ba1678c7d2f2af4df7f3176bd2ff4ca94a166cd0c1b43ea993beefa3e30f1bc792
|
|
@ -1,95 +0,0 @@
|
|||||||
diff --git a/src/main/java/org/mockito/internal/creation/bytebuddy/InlineBytecodeGenerator.java b/src/main/java/org/mockito/internal/creation/bytebuddy/InlineBytecodeGenerator.java
|
|
||||||
index 10b73c81a..5e2d8d2dc 100644
|
|
||||||
--- a/src/main/java/org/mockito/internal/creation/bytebuddy/InlineBytecodeGenerator.java
|
|
||||||
+++ b/src/main/java/org/mockito/internal/creation/bytebuddy/InlineBytecodeGenerator.java
|
|
||||||
@@ -18,8 +18,8 @@ import net.bytebuddy.dynamic.ClassFileLocator;
|
|
||||||
import net.bytebuddy.dynamic.scaffold.MethodGraph;
|
|
||||||
import net.bytebuddy.dynamic.scaffold.TypeValidation;
|
|
||||||
import net.bytebuddy.implementation.Implementation;
|
|
||||||
-import net.bytebuddy.jar.asm.ClassVisitor;
|
|
||||||
-import net.bytebuddy.jar.asm.MethodVisitor;
|
|
||||||
+import org.objectweb.asm.ClassVisitor;
|
|
||||||
+import org.objectweb.asm.MethodVisitor;
|
|
||||||
import net.bytebuddy.matcher.ElementMatchers;
|
|
||||||
import net.bytebuddy.pool.TypePool;
|
|
||||||
import net.bytebuddy.utility.OpenedClassReader;
|
|
||||||
diff --git a/src/main/java/org/mockito/internal/creation/bytebuddy/MockMethodAdvice.java b/src/main/java/org/mockito/internal/creation/bytebuddy/MockMethodAdvice.java
|
|
||||||
index 1490501ea..743a04f36 100644
|
|
||||||
--- a/src/main/java/org/mockito/internal/creation/bytebuddy/MockMethodAdvice.java
|
|
||||||
+++ b/src/main/java/org/mockito/internal/creation/bytebuddy/MockMethodAdvice.java
|
|
||||||
@@ -37,10 +37,10 @@ import net.bytebuddy.implementation.bind.annotation.Argument;
|
|
||||||
import net.bytebuddy.implementation.bind.annotation.This;
|
|
||||||
import net.bytebuddy.implementation.bytecode.StackSize;
|
|
||||||
import net.bytebuddy.implementation.bytecode.assign.Assigner;
|
|
||||||
-import net.bytebuddy.jar.asm.Label;
|
|
||||||
-import net.bytebuddy.jar.asm.MethodVisitor;
|
|
||||||
-import net.bytebuddy.jar.asm.Opcodes;
|
|
||||||
-import net.bytebuddy.jar.asm.Type;
|
|
||||||
+import org.objectweb.asm.Label;
|
|
||||||
+import org.objectweb.asm.MethodVisitor;
|
|
||||||
+import org.objectweb.asm.Opcodes;
|
|
||||||
+import org.objectweb.asm.Type;
|
|
||||||
import net.bytebuddy.pool.TypePool;
|
|
||||||
import net.bytebuddy.utility.OpenedClassReader;
|
|
||||||
|
|
||||||
diff --git a/src/test/java/org/mockito/internal/creation/bytebuddy/AbstractByteBuddyMockMakerTest.java b/src/test/java/org/mockito/internal/creation/bytebuddy/AbstractByteBuddyMockMakerTest.java
|
|
||||||
index 93c8913ac..972753e78 100644
|
|
||||||
--- a/src/test/java/org/mockito/internal/creation/bytebuddy/AbstractByteBuddyMockMakerTest.java
|
|
||||||
+++ b/src/test/java/org/mockito/internal/creation/bytebuddy/AbstractByteBuddyMockMakerTest.java
|
|
||||||
@@ -21,6 +21,7 @@ import org.mockito.mock.SerializableMode;
|
|
||||||
import org.mockito.plugins.MockMaker;
|
|
||||||
import org.mockitoutil.ClassLoaders;
|
|
||||||
import org.mockitoutil.SimpleSerializationUtil;
|
|
||||||
+import org.objectweb.asm.ClassVisitor;
|
|
||||||
import org.objenesis.ObjenesisStd;
|
|
||||||
|
|
||||||
public abstract class AbstractByteBuddyMockMakerTest<MM extends MockMaker>
|
|
||||||
@@ -126,7 +127,7 @@ public abstract class AbstractByteBuddyMockMakerTest<MM extends MockMaker>
|
|
||||||
// given
|
|
||||||
ClassLoader classpath_with_objenesis =
|
|
||||||
ClassLoaders.excludingClassLoader()
|
|
||||||
- .withCodeSourceUrlOf(Mockito.class, ByteBuddy.class, ObjenesisStd.class)
|
|
||||||
+ .withCodeSourceUrlOf(Mockito.class, ByteBuddy.class, ObjenesisStd.class, ClassVisitor.class)
|
|
||||||
.withCodeSourceUrlOf(coverageTool())
|
|
||||||
.build();
|
|
||||||
|
|
||||||
diff --git a/src/test/java/org/mockito/internal/junit/JUnitRuleTest.java b/src/test/java/org/mockito/internal/junit/JUnitRuleTest.java
|
|
||||||
index f971893e4..63af9cd52 100644
|
|
||||||
--- a/src/test/java/org/mockito/internal/junit/JUnitRuleTest.java
|
|
||||||
+++ b/src/test/java/org/mockito/internal/junit/JUnitRuleTest.java
|
|
||||||
@@ -8,6 +8,7 @@ import static org.junit.Assert.assertTrue;
|
|
||||||
import static org.mockito.Mockito.mockingDetails;
|
|
||||||
import static org.mockito.Mockito.when;
|
|
||||||
|
|
||||||
+import org.junit.Ignore;
|
|
||||||
import org.junit.Rule;
|
|
||||||
import org.junit.Test;
|
|
||||||
import org.mockito.Mock;
|
|
||||||
@@ -42,6 +43,7 @@ public class JUnitRuleTest {
|
|
||||||
|
|
||||||
@SuppressWarnings({"CheckReturnValue", "MockitoUsage"})
|
|
||||||
@Test
|
|
||||||
+ @Ignore
|
|
||||||
public void does_not_check_invalid_mockito_usage_on_failure() throws Throwable {
|
|
||||||
// This intended behavior is questionable
|
|
||||||
// However, it was like that since the beginning of JUnit rule support
|
|
||||||
diff --git a/src/test/java/org/mockitointegration/NoJUnitDependenciesTest.java b/src/test/java/org/mockitointegration/NoJUnitDependenciesTest.java
|
|
||||||
index 7b156f0aa..d488e9628 100644
|
|
||||||
--- a/src/test/java/org/mockitointegration/NoJUnitDependenciesTest.java
|
|
||||||
+++ b/src/test/java/org/mockitointegration/NoJUnitDependenciesTest.java
|
|
||||||
@@ -16,6 +16,7 @@ import org.junit.Test;
|
|
||||||
import org.mockito.Mockito;
|
|
||||||
import org.mockito.internal.configuration.plugins.Plugins;
|
|
||||||
import org.mockitoutil.ClassLoaders;
|
|
||||||
+import org.objectweb.asm.ClassVisitor;
|
|
||||||
import org.objenesis.Objenesis;
|
|
||||||
|
|
||||||
public class NoJUnitDependenciesTest {
|
|
||||||
@@ -32,6 +33,7 @@ public class NoJUnitDependenciesTest {
|
|
||||||
Matcher.class,
|
|
||||||
ByteBuddy.class,
|
|
||||||
ByteBuddyAgent.class,
|
|
||||||
+ ClassVisitor.class,
|
|
||||||
Objenesis.class)
|
|
||||||
.withCodeSourceUrlOf(coverageTool())
|
|
||||||
.without("junit", "org.junit", "org.opentest4j")
|
|
Loading…
Reference in New Issue
Block a user