How to use equals method of org.testcontainers.utility.Versioning class

Best Testcontainers-java code snippet using org.testcontainers.utility.Versioning.equals

Source:DockerImageName.java Github

copy

Full Screen

...50 String remoteName;51 if (slashIndex == -1 ||52 (!fullImageName.substring(0, slashIndex).contains(".") &&53 !fullImageName.substring(0, slashIndex).contains(":") &&54 !fullImageName.substring(0, slashIndex).equals("localhost"))) {55 registry = "";56 remoteName = fullImageName;57 } else {58 registry = fullImageName.substring(0, slashIndex);59 remoteName = fullImageName.substring(slashIndex + 1);60 }61 if (remoteName.contains("@sha256:")) {62 repository = remoteName.split("@sha256:")[0];63 versioning = new Sha256Versioning(remoteName.split("@sha256:")[1]);64 } else if (remoteName.contains(":")) {65 repository = remoteName.split(":")[0];66 versioning = new TagVersioning(remoteName.split(":")[1]);67 } else {68 repository = remoteName;69 versioning = Versioning.ANY;70 }71 compatibleSubstituteFor = null;72 }73 /**74 * Parses a docker image name from a provided string, and uses a separate provided version.75 *76 * @param nameWithoutTag in standard Docker format, e.g. <code>name</code>,77 * <code>some.registry/path/name</code>,78 * <code>some.registry/path/name</code>, etc.79 * @param version a docker image version identifier, either as a tag or sha256 checksum, e.g.80 * <code>tag</code>,81 * <code>sha256:abcdef...</code>.82 * @deprecated use {@link DockerImageName#parse(String)}.{@link DockerImageName#withTag(String)} instead83 */84 @Deprecated85 public DockerImageName(String nameWithoutTag, @NotNull String version) {86 this.rawName = nameWithoutTag;87 final int slashIndex = nameWithoutTag.indexOf('/');88 String remoteName;89 if (slashIndex == -1 ||90 (!nameWithoutTag.substring(0, slashIndex).contains(".") &&91 !nameWithoutTag.substring(0, slashIndex).contains(":") &&92 !nameWithoutTag.substring(0, slashIndex).equals("localhost"))) {93 registry = "";94 remoteName = nameWithoutTag;95 } else {96 registry = nameWithoutTag.substring(0, slashIndex);97 remoteName = nameWithoutTag.substring(slashIndex + 1);98 }99 if (version.startsWith("sha256:")) {100 repository = remoteName;101 versioning = new Sha256Versioning(version.replace("sha256:", ""));102 } else {103 repository = remoteName;104 versioning = new TagVersioning(version);105 }106 compatibleSubstituteFor = null;107 }108 /**109 * @return the unversioned (non 'tag') part of this name110 */111 public String getUnversionedPart() {112 if (!"".equals(registry)) {113 return registry + "/" + repository;114 } else {115 return repository;116 }117 }118 /**119 * @return the versioned part of this name (tag or sha256)120 */121 public String getVersionPart() {122 return versioning.toString();123 }124 /**125 * @return canonical name for the image126 */127 public String asCanonicalNameString() {128 return getUnversionedPart() + versioning.getSeparator() + getVersionPart();129 }130 @Override131 public String toString() {132 return asCanonicalNameString();133 }134 /**135 * Is the image name valid?136 *137 * @throws IllegalArgumentException if not valid138 */139 public void assertValid() {140 //noinspection UnstableApiUsage141 HostAndPort.fromString(registry); // return value ignored - this throws if registry is not a valid host:port string142 if (!REPO_NAME.matcher(repository).matches()) {143 throw new IllegalArgumentException(repository + " is not a valid Docker image name (in " + rawName + ")");144 }145 if (!versioning.isValid()) {146 throw new IllegalArgumentException(versioning + " is not a valid image versioning identifier (in " + rawName + ")");147 }148 }149 /**150 * @param newTag version tag for the copy to use151 * @return an immutable copy of this {@link DockerImageName} with the new version tag152 */153 public DockerImageName withTag(final String newTag) {154 return withVersioning(new TagVersioning(newTag));155 }156 /**157 * Declare that this {@link DockerImageName} is a compatible substitute for another image - i.e. that this image158 * behaves as the other does, and is compatible with Testcontainers' assumptions about the other image.159 *160 * @param otherImageName the image name of the other image161 * @return an immutable copy of this {@link DockerImageName} with the compatibility declaration attached.162 */163 public DockerImageName asCompatibleSubstituteFor(String otherImageName) {164 return withCompatibleSubstituteFor(DockerImageName.parse(otherImageName));165 }166 /**167 * Declare that this {@link DockerImageName} is a compatible substitute for another image - i.e. that this image168 * behaves as the other does, and is compatible with Testcontainers' assumptions about the other image.169 *170 * @param otherImageName the image name of the other image171 * @return an immutable copy of this {@link DockerImageName} with the compatibility declaration attached.172 */173 public DockerImageName asCompatibleSubstituteFor(DockerImageName otherImageName) {174 return withCompatibleSubstituteFor(otherImageName);175 }176 /**177 * Test whether this {@link DockerImageName} has declared compatibility with another image (set using178 * {@link DockerImageName#asCompatibleSubstituteFor(String)} or179 * {@link DockerImageName#asCompatibleSubstituteFor(DockerImageName)}.180 * <p>181 * If a version tag part is present in the <code>other</code> image name, the tags must exactly match, unless it182 * is 'latest'. If a version part is not present in the <code>other</code> image name, the tag contents are ignored.183 *184 * @param other the other image that we are trying to test compatibility with185 * @return whether this image has declared compatibility.186 */187 public boolean isCompatibleWith(DockerImageName other) {188 // is this image already the same or equivalent?189 if (other.equals(this)) {190 return true;191 }192 if (this.compatibleSubstituteFor == null) {193 return false;194 }195 return this.compatibleSubstituteFor.isCompatibleWith(other);196 }197 /**198 * Behaves as {@link DockerImageName#isCompatibleWith(DockerImageName)} but throws an exception199 * rather than returning false if a mismatch is detected.200 *201 * @param anyOthers the other image(s) that we are trying to check compatibility with. If more202 * than one is provided, this method will check compatibility with at least one203 * of them....

Full Screen

Full Screen

equals

Using AI Code Generation

copy

Full Screen

1if (Versioning.compareDockerVersions("1.12.0", "1.12.0") == 0) {2}3if (Versioning.compareDockerVersions("1.12.0", "1.12.0") == 0) {4}5if (Versioning.isGreaterThanOrEqualTo("1.12.0", "1.12.0")) {6}7if (Versioning.isGreaterThan("1.12.0", "1.12.0")) {8}9if (Versioning.isLessThanOrEqualTo("1.12.0", "1.12.0")) {

Full Screen

Full Screen

equals

Using AI Code Generation

copy

Full Screen

1public class TestContainersVersionCompare {2 public static void main(String[] args) {3 System.out.println("Version 1.10.0 is greater than 1.9.0 : " + Versioning.compareDottedVersions("1.10.0", "1.9.0"));4 System.out.println("Version 1.9.0 is greater than 1.10.0 : " + Versioning.compareDottedVersions("1.9.0", "1.10.0"));5 System.out.println("Version 1.9.0 is greater than 1.9.0 : " + Versioning.compareDottedVersions("1.9.0", "1.9.0"));6 }7}8public class TestContainersVersionCompare {9 public static void main(String[] args) {10 System.out.println("Version 1.10.0 is greater than 1.9.0 : " + Versioning.compareVersion("1.10.0", "1.9.0"));11 System.out.println("Version 1.9.0 is greater than 1.10.0 : " + Versioning.compareVersion("1.9.0", "1.10.0"));12 System.out.println("Version 1.9.0 is greater than

Full Screen

Full Screen

equals

Using AI Code Generation

copy

Full Screen

1public class TestContainersVersion {2 public static void main(String[] args) {3 String version = "1.15.1";4 System.out.println("Is the version greater than 1.15.0? " + Versioning5 .parseVersion(version).isGreaterOrEqual("1.15.0"));6 }7}

Full Screen

Full Screen

equals

Using AI Code Generation

copy

Full Screen

1if (Versioning.getVersionComparator().compare(dockerVersion, "1.10") < 0) {2 throw new RuntimeException("Docker version 1.10 or later is required");3}4if (Versioning.getVersionComparator().compare(dockerVersion, "1.10") < 0) {5 throw new RuntimeException("Docker version 1.10 or later is required");6}7if (Versioning.getVersionComparator().compare(dockerVersion, "1.10") < 0) {8 throw new RuntimeException("Docker version 1.10 or later is required");9}10if (Versioning.getVersionComparator().compare(dockerVersion, "1.10") < 0) {11 throw new RuntimeException("Docker version 1.10 or later is required");12}13if (Versioning.getVersionComparator().compare(dockerVersion, "1.10") < 0) {14 throw new RuntimeException("Docker version 1.10 or later is required");15}16if (Versioning.getVersionComparator().compare(dockerVersion, "1.10") < 0) {17 throw new RuntimeException("Docker version 1.10 or later is required");18}19if (Versioning.getVersionComparator().compare(dockerVersion, "1.10") < 0) {20 throw new RuntimeException("Docker version 1.10 or later is required");21}

Full Screen

Full Screen

equals

Using AI Code Generation

copy

Full Screen

1import org.testcontainers.utility.Versioning2import org.testcontainers.DockerClientFactory3import java.lang.IllegalStateException4def dockerVersion = DockerClientFactory.instance().clientVersion()5if (Versioning.compareVersion(dockerVersion, requiredVersion) < 0) {6 throw new IllegalStateException("Docker version should be greater than or equal to ${requiredVersion}")7}8import org.testcontainers.containers.GenericContainer9def container = new GenericContainer("alpine:3.4")10container.withCommand("ping", "

Full Screen

Full Screen

equals

Using AI Code Generation

copy

Full Screen

1import org.testcontainers.containers.output.Slf4jLogConsumer2import org.testcontainers.containers.wait.strategy.Wait3import org.testcontainers.utility.Versioning4import org.testcontainers.containers.GenericContainer5import org.testcontainers.containers.output.Slf4jLogConsumer6import org.testcontainers.containers.wait.strategy.Wait7import org.testcontainers.utility.Versioning8import org.junit.Test9import static org.junit.Assert.assertEquals10class ExampleTest {11 void testContainer() {12 def imageVersion = Versioning.getVersion("container-image:latest")13 if (imageVersion.isGreaterOrEqualThan("1.0.0")) {14 def container = new GenericContainer("container-image:latest")15 container.withExposedPorts(8080)16 container.withLogConsumer(new Slf4jLogConsumer(LoggerFactory.getLogger("test")))17 container.waitingFor(Wait.forHttp("/").forPort(8080))18 container.start()19 assertEquals("Hello World!", response)20 } else {21 logger.info("Skipping test because container image version is less than 1.0.0")22 }23 }24}25 at org.testcontainers.containers.GenericContainer.tryStart(GenericContainer.java:282)26 at org.testcontainers.containers.GenericContainer.lambda$doStart$0(GenericContainer.java:237)27 at org.rnorth.ducttape.unreliables.Unreliables.retryUntilSuccess(Unreliables.java:81)28 at org.testcontainers.containers.GenericContainer.doStart(GenericContainer.java:235)29 at org.testcontainers.containers.GenericContainer.start(GenericContainer.java:217)30 at org.testcontainers.containers.GenericContainer.starting(GenericContainer.java:738)31 at org.testcontainers.containers.FailureDetectingExternalResource$1.evaluate(FailureDetectingExternalResource.java:29)32 at org.junit.rules.RunRules.evaluate(RunRules.java:20)33 at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)34 at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Testcontainers-java automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Most used method in Versioning

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful