Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OSOE-46: Changing to InstanceCommandLineArgumentsBuilder #34

Merged
merged 24 commits into from
Oct 14, 2022
Merged
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
1796a5a
Changing to InstanceCommandLineArgumentsBuilder
dministro Sep 2, 2022
d9d6a94
Renaming AddValue to AddWithValue
dministro Sep 2, 2022
da7b05e
Removing hypens
dministro Sep 2, 2022
6db127b
Increasing delay
dministro Sep 2, 2022
2c1433a
Increasing delay, last try
dministro Sep 2, 2022
e347fac
Adding more logs
dministro Sep 3, 2022
2ccc172
Merge branch 'dev' of https://github.com/Lombiq/Hosting-Tenants into …
dministro Sep 3, 2022
43e26fe
Reverting log level changes
dministro Sep 3, 2022
6cf63e3
Removing log dump
dministro Sep 3, 2022
9840017
Removing extra logs
dministro Sep 3, 2022
4b2e234
Decreasing delay
dministro Sep 6, 2022
fedfdf1
Merge branch 'dev' of https://github.com/Lombiq/Hosting-Tenants into …
dministro Sep 9, 2022
07e0379
Updating Lombiq.Tests.UI.* Nuget package version
dministro Sep 11, 2022
b67d378
Updating Lombiq.Tests.UI.* Nuget package version
dministro Sep 15, 2022
64d849b
Updating Lombiq.Tests.UI.* Nuget package version
dministro Sep 15, 2022
0270d60
Merge branch 'dev' of https://github.com/Lombiq/Hosting-Tenants into …
dministro Sep 19, 2022
16c98ed
Updating Lombiq.Tests.UI.* Nuget package version
dministro Sep 20, 2022
e2c29b4
Updating Lombiq.Tests.UI.* Nuget package version
dministro Sep 21, 2022
78dbbea
Merge branch 'dev' of https://github.com/Lombiq/Hosting-Tenants into …
dministro Sep 27, 2022
39a77ce
Merge branch 'dev' of https://github.com/Lombiq/Hosting-Tenants into …
dministro Sep 29, 2022
9615c14
Updating Lombiq.Tests.UI.* Nuget package version
dministro Sep 29, 2022
a797d99
Merge branch 'dev' of https://github.com/Lombiq/Hosting-Tenants into …
dministro Oct 3, 2022
aeb2f56
Merge branch 'dev' of https://github.com/Lombiq/Hosting-Tenants into …
dministro Oct 5, 2022
9a36b9a
Fixing after merge
dministro Oct 5, 2022
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 @@ -13,12 +13,12 @@ public static void SetMaxIdleMinutesAndLoggingForUITest(
(_, argumentsBuilder) =>
{
argumentsBuilder
.Add("--OrchardCore:Lombiq_Hosting_Tenants_IdleTenantManagement:IdleMinutesOptions:MaxIdleMinutes")
.Add("1");
.AddWithValue(
"OrchardCore:Lombiq_Hosting_Tenants_IdleTenantManagement:IdleMinutesOptions:MaxIdleMinutes",
"1");

argumentsBuilder
.Add("--Logging:LogLevel:Default")
.Add("Information");
.AddWithValue("Logging:LogLevel:Default", "Information");

return Task.CompletedTask;
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ public static class TestCaseUITestContextExtensions
{
public static async Task TestIdleTenantManagerBehaviorAsync(this UITestContext context)
{
// We are letting the site to sit idle for more than a minute so that the
// We are letting the site to sit idle for more than two minutes so that the
// tenant could be shut down by the background task.
await Task.Delay(69420);
await Task.Delay(129420);

// If we can access the admin menu after the tenant shut down that means the new shell was created
// and it is working as intended.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</ItemGroup>

<ItemGroup Condition="'$(NuGetBuild)' == 'true'">
<PackageReference Include="Lombiq.Tests.UI" Version="3.5.1-alpha.walma-15.4" />
<PackageReference Include="Lombiq.Tests.UI" Version="3.5.1-alpha.osoe-46.5" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Lombiq.Hosting.Tenants.IdleTenantManagement.Models;
using Lombiq.Hosting.Tenants.IdleTenantManagement.Models;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
Expand Down