Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import io.minio.{ListObjectsArgs, MakeBucketArgs, MinioClient}
import org.apache.spark.sql.functions.col
import org.scalatest.matchers.should.Matchers
import org.testcontainers.containers.MinIOContainer
import org.testcontainers.utility.DockerImageName

import java.io.FileInputStream

Expand Down Expand Up @@ -110,7 +111,10 @@ class OsmReaderTest extends TestBaseScala with Matchers {
}

it("should be able to read from osm file on s3") {
val container = new MinIOContainer("minio/minio:latest")
val container = new MinIOContainer(
DockerImageName
.parse("quay.io/minio/minio:RELEASE.2025-09-07T16-13-09Z")
.asCompatibleSubstituteFor("minio/minio"))

container.start()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import org.apache.spark.sql.types.{BinaryType, BooleanType, DateType, DoubleType
import org.scalatest.matchers.should.Matchers
import org.scalatest.prop.TableDrivenPropertyChecks._
import org.testcontainers.containers.MinIOContainer
import org.testcontainers.utility.DockerImageName

import java.io.FileInputStream
import java.sql.{Date, Timestamp}
Expand Down Expand Up @@ -310,7 +311,10 @@ class GeoPackageReaderTest extends TestBaseScala with Matchers {

describe("Reading from S3") {
it("should be able to read files from S3") {
val container = new MinIOContainer("minio/minio:latest")
val container = new MinIOContainer(
DockerImageName
.parse("quay.io/minio/minio:RELEASE.2025-09-07T16-13-09Z")
.asCompatibleSubstituteFor("minio/minio"))

container.start()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import org.apache.spark.sql.types.{BinaryType, BooleanType, DateType, DoubleType
import org.scalatest.matchers.should.Matchers
import org.scalatest.prop.TableDrivenPropertyChecks._
import org.testcontainers.containers.MinIOContainer
import org.testcontainers.utility.DockerImageName

import java.io.FileInputStream
import java.sql.{Date, Timestamp}
Expand Down Expand Up @@ -310,7 +311,10 @@ class GeoPackageReaderTest extends TestBaseScala with Matchers {

describe("Reading from S3") {
it("should be able to read files from S3") {
val container = new MinIOContainer("minio/minio:latest")
val container = new MinIOContainer(
DockerImageName
.parse("quay.io/minio/minio:RELEASE.2025-09-07T16-13-09Z")
.asCompatibleSubstituteFor("minio/minio"))

container.start()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import org.apache.spark.sql.types.{BinaryType, BooleanType, DateType, DoubleType
import org.scalatest.matchers.should.Matchers
import org.scalatest.prop.TableDrivenPropertyChecks._
import org.testcontainers.containers.MinIOContainer
import org.testcontainers.utility.DockerImageName

import java.io.FileInputStream
import java.sql.{Date, Timestamp}
Expand Down Expand Up @@ -310,7 +311,10 @@ class GeoPackageReaderTest extends TestBaseScala with Matchers {

describe("Reading from S3") {
it("should be able to read files from S3") {
val container = new MinIOContainer("minio/minio:latest")
val container = new MinIOContainer(
DockerImageName
.parse("quay.io/minio/minio:RELEASE.2025-09-07T16-13-09Z")
.asCompatibleSubstituteFor("minio/minio"))

container.start()

Expand Down
Loading