Skip to content

Commit

Permalink
Bump test base/factory default images
Browse files Browse the repository at this point in the history
  • Loading branch information
billybooth committed Oct 16, 2024
1 parent a32b68d commit 13a4b74
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/EssSharp.Integration/Setup/IntegrationTestBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public CollectionFixture( IMessageSink sink )
{
IntegrationTestFactory.Images = new []
{
"appliedolap/essbase:21.5-latest"
"appliedolap/essbase:21.6-latest"
};
}

Expand Down
6 changes: 3 additions & 3 deletions src/EssSharp.Integration/Setup/IntegrationTestFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -133,13 +133,13 @@ public static class IntegrationTestFactory
var hostPort = Uri.TryCreate(connection.Server, UriKind.Absolute, out var serverUri) ? serverUri.Port.ToString() : "9000";

_essbaseTestContainer = new ContainerBuilder()
.WithImage(image) // "appliedolap/essbase:21.5-latest"
.WithName(containerName) // "essbase-21-5"
.WithImage(image) // "appliedolap/essbase:21.6-latest"
.WithName(containerName) // "essbase-21-6"
.WithNetwork("standalone")
.WithPortBinding(hostPort, "9000") // "9000"
.WithEnvironment("ADMIN_PASSWORD", connection.Password) // "welcome1"
.WithEnvironment("DATABASE_TYPE", "sqlserver")
.WithEnvironment("DATABASE_CONNECT_STRING", $@"{containerName}-database:1433:CertDB") // "essbase-21-5-database:1433:CertDB"
.WithEnvironment("DATABASE_CONNECT_STRING", $@"{containerName}-database:1433:CertDB") // "essbase-21-6-database:1433:CertDB"
.WithEnvironment("DATABASE_ADMIN_USERNAME", "sa")
.WithEnvironment("DATABASE_ADMIN_PASSWORD", "StrongPassw0rd")
.WithEnvironment("DATABASE_WAIT_TIMEOUT", "240")
Expand Down
2 changes: 1 addition & 1 deletion src/EssSharp.Integration/appsettings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"Settings": {
"Images": [
"appliedolap/essbase:21.5-latest"
"appliedolap/essbase:21.6-latest"
],
"Connections": [
{
Expand Down

0 comments on commit 13a4b74

Please sign in to comment.