From fe7917ec8e2f74d9c191dbfd3f9eac0a978d3fe8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Wed, 1 May 2024 21:53:03 +0200 Subject: [PATCH 01/25] submodules --- src/Utilities/Lombiq.NodeJs.Extensions | 2 +- tools/Lombiq.GitHub.Actions | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Utilities/Lombiq.NodeJs.Extensions b/src/Utilities/Lombiq.NodeJs.Extensions index ad81728f1..4bcc86d0c 160000 --- a/src/Utilities/Lombiq.NodeJs.Extensions +++ b/src/Utilities/Lombiq.NodeJs.Extensions @@ -1 +1 @@ -Subproject commit ad81728f1b26265b7179e43cc39e7ceb961dedd9 +Subproject commit 4bcc86d0c1c9a5ad45411e82aae2ddecdea5212e diff --git a/tools/Lombiq.GitHub.Actions b/tools/Lombiq.GitHub.Actions index 7b5a5b247..5f456a164 160000 --- a/tools/Lombiq.GitHub.Actions +++ b/tools/Lombiq.GitHub.Actions @@ -1 +1 @@ -Subproject commit 7b5a5b2471c79af33615a21aad6f497056b9c9a4 +Subproject commit 5f456a16498158e982da63028740b643c4e403a4 From 5d4ac4da00b3c6db4d6db04e00877ea8a16bea0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Thu, 2 May 2024 09:27:21 +0200 Subject: [PATCH 02/25] Add TestRunTimeout config. --- test/Lombiq.UITestingToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Lombiq.UITestingToolbox b/test/Lombiq.UITestingToolbox index 361ab7e48..f0782ac6e 160000 --- a/test/Lombiq.UITestingToolbox +++ b/test/Lombiq.UITestingToolbox @@ -1 +1 @@ -Subproject commit 361ab7e48c70a7c3ef67e3ea14080ace8aadc1fc +Subproject commit f0782ac6ee956d784c0cf0027ff3be920b2009a9 From 51b70da8242d8980bd4df26afe8206bfa8d1589e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Thu, 2 May 2024 09:36:52 +0200 Subject: [PATCH 03/25] ExecuteOrchardCoreTestAsync --- test/Lombiq.UITestingToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Lombiq.UITestingToolbox b/test/Lombiq.UITestingToolbox index f0782ac6e..7e10a7db4 160000 --- a/test/Lombiq.UITestingToolbox +++ b/test/Lombiq.UITestingToolbox @@ -1 +1 @@ -Subproject commit f0782ac6ee956d784c0cf0027ff3be920b2009a9 +Subproject commit 7e10a7db431a25d0612b6cd426bc444f568a6cf7 From 504848e592886d64430a444d5b85ee91715f0247 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Thu, 2 May 2024 09:57:45 +0200 Subject: [PATCH 04/25] Add test --- .../UITestingToolboxTests/TimeoutTests.cs | 18 ++++++++++++++++++ test/Lombiq.UITestingToolbox | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 test/Lombiq.OSOCE.Tests.UI/Tests/UITestingToolboxTests/TimeoutTests.cs diff --git a/test/Lombiq.OSOCE.Tests.UI/Tests/UITestingToolboxTests/TimeoutTests.cs b/test/Lombiq.OSOCE.Tests.UI/Tests/UITestingToolboxTests/TimeoutTests.cs new file mode 100644 index 000000000..1d37f27bd --- /dev/null +++ b/test/Lombiq.OSOCE.Tests.UI/Tests/UITestingToolboxTests/TimeoutTests.cs @@ -0,0 +1,18 @@ +using Lombiq.Tests.UI.Tests.UI.TestCases; +using System.Threading.Tasks; +using Xunit; +using Xunit.Abstractions; + +namespace Lombiq.OSOCE.Tests.UI.Tests.UITestingToolboxTests; + +public class TimeoutTests : UITestBase +{ + public TimeoutTests(ITestOutputHelper testOutputHelper) + : base(testOutputHelper) + { + } + + [Fact] + public Task GenerateHttpEventUrlShouldWork() => + TimeoutTestCases.TestRunTimoutShouldThrowAsync(ExecuteTestAfterSetupAsync); +} diff --git a/test/Lombiq.UITestingToolbox b/test/Lombiq.UITestingToolbox index 7e10a7db4..fd1fc5b27 160000 --- a/test/Lombiq.UITestingToolbox +++ b/test/Lombiq.UITestingToolbox @@ -1 +1 @@ -Subproject commit 7e10a7db431a25d0612b6cd426bc444f568a6cf7 +Subproject commit fd1fc5b27ff036a71ec43d833080db47ac5afa3e From 6daaf6b0a1ed9fe35aad4d282603a29842fd146f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Thu, 2 May 2024 10:09:57 +0200 Subject: [PATCH 05/25] Format code. --- .../Tests/UITestingToolboxTests/TimeoutTests.cs | 2 +- test/Lombiq.UITestingToolbox | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Lombiq.OSOCE.Tests.UI/Tests/UITestingToolboxTests/TimeoutTests.cs b/test/Lombiq.OSOCE.Tests.UI/Tests/UITestingToolboxTests/TimeoutTests.cs index 1d37f27bd..7a97d3789 100644 --- a/test/Lombiq.OSOCE.Tests.UI/Tests/UITestingToolboxTests/TimeoutTests.cs +++ b/test/Lombiq.OSOCE.Tests.UI/Tests/UITestingToolboxTests/TimeoutTests.cs @@ -13,6 +13,6 @@ public TimeoutTests(ITestOutputHelper testOutputHelper) } [Fact] - public Task GenerateHttpEventUrlShouldWork() => + public Task TestRunTimoutShouldThrowAsync() => TimeoutTestCases.TestRunTimoutShouldThrowAsync(ExecuteTestAfterSetupAsync); } diff --git a/test/Lombiq.UITestingToolbox b/test/Lombiq.UITestingToolbox index fd1fc5b27..ef176a2c9 160000 --- a/test/Lombiq.UITestingToolbox +++ b/test/Lombiq.UITestingToolbox @@ -1 +1 @@ -Subproject commit fd1fc5b27ff036a71ec43d833080db47ac5afa3e +Subproject commit ef176a2c92bfeba122a52e28448e3f25ed8f1851 From 625ff1764753a6bab1ca2608440e036681a05de5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Thu, 2 May 2024 13:49:12 +0200 Subject: [PATCH 06/25] Update BehaviorWalkthroughsTests.htmlvalidate.json. --- .../BehaviorWalkthroughsTests.htmlvalidate.json | 13 ++----------- test/Lombiq.UITestingToolbox | 2 +- 2 files changed, 3 insertions(+), 12 deletions(-) diff --git a/test/Lombiq.OSOCE.Tests.UI/BehaviorWalkthroughsTests.htmlvalidate.json b/test/Lombiq.OSOCE.Tests.UI/BehaviorWalkthroughsTests.htmlvalidate.json index 479850ca1..2a86a66c4 100644 --- a/test/Lombiq.OSOCE.Tests.UI/BehaviorWalkthroughsTests.htmlvalidate.json +++ b/test/Lombiq.OSOCE.Tests.UI/BehaviorWalkthroughsTests.htmlvalidate.json @@ -1,20 +1,11 @@ { "extends": [ - "html-validate:recommended" + "./default.htmlvalidate.json" ], "rules": { - "attribute-boolean-style": "off", "element-required-attributes": "off", - "no-trailing-whitespace": "off", - "no-inline-style": "off", - "no-implicit-button-type": "off", - "wcag/h30": "off", - "wcag/h32": "off", - "wcag/h36": "off", - "wcag/h37": "off", - "wcag/h67": "off", - "wcag/h71": "off" + "no-implicit-button-type": "off" }, "root": true diff --git a/test/Lombiq.UITestingToolbox b/test/Lombiq.UITestingToolbox index ef176a2c9..e2bbf10a5 160000 --- a/test/Lombiq.UITestingToolbox +++ b/test/Lombiq.UITestingToolbox @@ -1 +1 @@ -Subproject commit ef176a2c92bfeba122a52e28448e3f25ed8f1851 +Subproject commit e2bbf10a546d4045747cd84622f80ab513fb589a From a2388c1445a96203f9c03b107104725c2f390e6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Thu, 2 May 2024 13:50:45 +0200 Subject: [PATCH 07/25] Use WithRelativeConfigPath. --- .../Tests/ModuleTests/BehaviorWalkthroughsTests.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/test/Lombiq.OSOCE.Tests.UI/Tests/ModuleTests/BehaviorWalkthroughsTests.cs b/test/Lombiq.OSOCE.Tests.UI/Tests/ModuleTests/BehaviorWalkthroughsTests.cs index c96d80ea4..28ac59518 100644 --- a/test/Lombiq.OSOCE.Tests.UI/Tests/ModuleTests/BehaviorWalkthroughsTests.cs +++ b/test/Lombiq.OSOCE.Tests.UI/Tests/ModuleTests/BehaviorWalkthroughsTests.cs @@ -27,10 +27,8 @@ public Task WalkthroughsShouldWorkCorrectly() => changeConfiguration: configuration => { // Could be removed if https://github.com/shepherd-pro/shepherd/issues/2555 is fixed. - configuration.HtmlValidationConfiguration.HtmlValidationOptions = - configuration.HtmlValidationConfiguration.HtmlValidationOptions - .CloneWith(validationOptions => validationOptions.ConfigPath = - Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "BehaviorWalkthroughsTests.htmlvalidate.json")); + configuration.HtmlValidationConfiguration + .WithRelativeConfigPath("BehaviorWalkthroughsTests.htmlvalidate.json"); // Once the linked issues are fixed, the custom browser log assertion can be removed completely. configuration.AssertBrowserLog = logEntries => logEntries.ShouldNotContain( From c0372b606a469cade598e47ee44b21fdedff2144 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Thu, 2 May 2024 14:12:31 +0200 Subject: [PATCH 08/25] Set the default config path. --- test/Lombiq.UITestingToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Lombiq.UITestingToolbox b/test/Lombiq.UITestingToolbox index e2bbf10a5..2fbc1ec83 160000 --- a/test/Lombiq.UITestingToolbox +++ b/test/Lombiq.UITestingToolbox @@ -1 +1 @@ -Subproject commit e2bbf10a546d4045747cd84622f80ab513fb589a +Subproject commit 2fbc1ec83ccda43d00399862a16de6737fca1dd5 From 1cf919a30a3b7ab890cf5b00c537acda336ebba9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Thu, 2 May 2024 14:16:01 +0200 Subject: [PATCH 09/25] Fix typos. --- .../Tests/UITestingToolboxTests/TimeoutTests.cs | 4 ++-- test/Lombiq.UITestingToolbox | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/Lombiq.OSOCE.Tests.UI/Tests/UITestingToolboxTests/TimeoutTests.cs b/test/Lombiq.OSOCE.Tests.UI/Tests/UITestingToolboxTests/TimeoutTests.cs index 7a97d3789..f9a4ec603 100644 --- a/test/Lombiq.OSOCE.Tests.UI/Tests/UITestingToolboxTests/TimeoutTests.cs +++ b/test/Lombiq.OSOCE.Tests.UI/Tests/UITestingToolboxTests/TimeoutTests.cs @@ -13,6 +13,6 @@ public TimeoutTests(ITestOutputHelper testOutputHelper) } [Fact] - public Task TestRunTimoutShouldThrowAsync() => - TimeoutTestCases.TestRunTimoutShouldThrowAsync(ExecuteTestAfterSetupAsync); + public Task TestRunTimeoutShouldThrowAsync() => + TimeoutTestCases.TestRunTimeoutShouldThrowAsync(ExecuteTestAfterSetupAsync); } diff --git a/test/Lombiq.UITestingToolbox b/test/Lombiq.UITestingToolbox index 2fbc1ec83..0024b6ee6 160000 --- a/test/Lombiq.UITestingToolbox +++ b/test/Lombiq.UITestingToolbox @@ -1 +1 @@ -Subproject commit 2fbc1ec83ccda43d00399862a16de6737fca1dd5 +Subproject commit 0024b6ee604b39b609f99c9fda11d679310873a0 From 440037040f72d5ccfcf3d55f848bd59365f08143 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Thu, 2 May 2024 15:18:36 +0200 Subject: [PATCH 10/25] Code cleanup. --- .../Tests/ModuleTests/BehaviorWalkthroughsTests.cs | 1 - test/Lombiq.UITestingToolbox | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/test/Lombiq.OSOCE.Tests.UI/Tests/ModuleTests/BehaviorWalkthroughsTests.cs b/test/Lombiq.OSOCE.Tests.UI/Tests/ModuleTests/BehaviorWalkthroughsTests.cs index 28ac59518..41456c7e0 100644 --- a/test/Lombiq.OSOCE.Tests.UI/Tests/ModuleTests/BehaviorWalkthroughsTests.cs +++ b/test/Lombiq.OSOCE.Tests.UI/Tests/ModuleTests/BehaviorWalkthroughsTests.cs @@ -4,7 +4,6 @@ using OpenQA.Selenium; using Shouldly; using System; -using System.IO; using System.Linq; using System.Threading.Tasks; using Xunit; diff --git a/test/Lombiq.UITestingToolbox b/test/Lombiq.UITestingToolbox index 0024b6ee6..de6197c29 160000 --- a/test/Lombiq.UITestingToolbox +++ b/test/Lombiq.UITestingToolbox @@ -1 +1 @@ -Subproject commit 0024b6ee604b39b609f99c9fda11d679310873a0 +Subproject commit de6197c2982c4e9e9c838efe42e15bbc6312afef From e5e62c1c423bfb8730f27aec3bf2f06baad79d6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Thu, 2 May 2024 17:09:04 +0200 Subject: [PATCH 11/25] wat --- .../Tests/ModuleTests/BehaviorEnvironmentRobotsTests.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/Lombiq.OSOCE.Tests.UI/Tests/ModuleTests/BehaviorEnvironmentRobotsTests.cs b/test/Lombiq.OSOCE.Tests.UI/Tests/ModuleTests/BehaviorEnvironmentRobotsTests.cs index 98e7cf628..dfa5ec368 100644 --- a/test/Lombiq.OSOCE.Tests.UI/Tests/ModuleTests/BehaviorEnvironmentRobotsTests.cs +++ b/test/Lombiq.OSOCE.Tests.UI/Tests/ModuleTests/BehaviorEnvironmentRobotsTests.cs @@ -1,4 +1,5 @@ using Lombiq.Hosting.Tenants.EnvironmentRobots.Tests.UI.Extensions; +using System; using System.Threading.Tasks; using Xunit; using Xunit.Abstractions; @@ -21,7 +22,8 @@ public Task RobotsMetaTagShouldBeMissing() => [Fact] public Task RobotsMetaTagShouldBeMissingWithoutConfiguration() => ExecuteTestAfterSetupAsync( - context => context.TestRobotMetaTagIsMissingAsync(shouldBeMissing: false)); + context => context.TestRobotMetaTagIsMissingAsync(shouldBeMissing: false), + configuration => configuration.TimeoutConfiguration.TestRunTimeout = TimeSpan.FromMinutes(10)); [Fact] public Task RobotsMetaTagShouldBePresent() => From 4cfef7d2db4026af352de6d4a386c01ea750159f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Thu, 2 May 2024 17:57:47 +0200 Subject: [PATCH 12/25] Clone TimeoutConfiguration so it won't break when configured per-test. --- .../Tests/ModuleTests/BehaviorEnvironmentRobotsTests.cs | 4 +--- test/Lombiq.UITestingToolbox | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/test/Lombiq.OSOCE.Tests.UI/Tests/ModuleTests/BehaviorEnvironmentRobotsTests.cs b/test/Lombiq.OSOCE.Tests.UI/Tests/ModuleTests/BehaviorEnvironmentRobotsTests.cs index dfa5ec368..98e7cf628 100644 --- a/test/Lombiq.OSOCE.Tests.UI/Tests/ModuleTests/BehaviorEnvironmentRobotsTests.cs +++ b/test/Lombiq.OSOCE.Tests.UI/Tests/ModuleTests/BehaviorEnvironmentRobotsTests.cs @@ -1,5 +1,4 @@ using Lombiq.Hosting.Tenants.EnvironmentRobots.Tests.UI.Extensions; -using System; using System.Threading.Tasks; using Xunit; using Xunit.Abstractions; @@ -22,8 +21,7 @@ public Task RobotsMetaTagShouldBeMissing() => [Fact] public Task RobotsMetaTagShouldBeMissingWithoutConfiguration() => ExecuteTestAfterSetupAsync( - context => context.TestRobotMetaTagIsMissingAsync(shouldBeMissing: false), - configuration => configuration.TimeoutConfiguration.TestRunTimeout = TimeSpan.FromMinutes(10)); + context => context.TestRobotMetaTagIsMissingAsync(shouldBeMissing: false)); [Fact] public Task RobotsMetaTagShouldBePresent() => diff --git a/test/Lombiq.UITestingToolbox b/test/Lombiq.UITestingToolbox index de6197c29..51ba4e9e8 160000 --- a/test/Lombiq.UITestingToolbox +++ b/test/Lombiq.UITestingToolbox @@ -1 +1 @@ -Subproject commit de6197c2982c4e9e9c838efe42e15bbc6312afef +Subproject commit 51ba4e9e832a548910f1bac8998feca21cdc2132 From a1d5adf40c045a9b55ef24694af7f59c3fb1c25d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Thu, 2 May 2024 18:16:38 +0200 Subject: [PATCH 13/25] Typo. --- test/Lombiq.UITestingToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Lombiq.UITestingToolbox b/test/Lombiq.UITestingToolbox index 51ba4e9e8..a8667363c 160000 --- a/test/Lombiq.UITestingToolbox +++ b/test/Lombiq.UITestingToolbox @@ -1 +1 @@ -Subproject commit 51ba4e9e832a548910f1bac8998feca21cdc2132 +Subproject commit a8667363c795aa6514ac92269f762604e9ee6fe1 From 5aa2f52f9b633d54a5757697ae416a42fa9bcfab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Thu, 2 May 2024 23:15:46 +0200 Subject: [PATCH 14/25] Fix error propagation. --- test/Lombiq.UITestingToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Lombiq.UITestingToolbox b/test/Lombiq.UITestingToolbox index a8667363c..afccec870 160000 --- a/test/Lombiq.UITestingToolbox +++ b/test/Lombiq.UITestingToolbox @@ -1 +1 @@ -Subproject commit a8667363c795aa6514ac92269f762604e9ee6fe1 +Subproject commit afccec87041fa097267ab13575aedd2e0a13399a From a660e1fc1412f8f9753ba2d5a37f41b4a776b9e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Thu, 2 May 2024 23:47:16 +0200 Subject: [PATCH 15/25] Fix WithRelativeConfigPath. --- test/Lombiq.UITestingToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Lombiq.UITestingToolbox b/test/Lombiq.UITestingToolbox index afccec870..03e360572 160000 --- a/test/Lombiq.UITestingToolbox +++ b/test/Lombiq.UITestingToolbox @@ -1 +1 @@ -Subproject commit afccec87041fa097267ab13575aedd2e0a13399a +Subproject commit 03e36057253457376cccd06d416ccb9708c8a4f2 From 0c27e7e6577e033cc5a36c8cda9e2eda4cc97487 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Fri, 3 May 2024 09:38:25 +0200 Subject: [PATCH 16/25] Fix spacing. --- .../BehaviorWalkthroughsTests.htmlvalidate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Lombiq.OSOCE.Tests.UI/BehaviorWalkthroughsTests.htmlvalidate.json b/test/Lombiq.OSOCE.Tests.UI/BehaviorWalkthroughsTests.htmlvalidate.json index 2a86a66c4..188b90bbd 100644 --- a/test/Lombiq.OSOCE.Tests.UI/BehaviorWalkthroughsTests.htmlvalidate.json +++ b/test/Lombiq.OSOCE.Tests.UI/BehaviorWalkthroughsTests.htmlvalidate.json @@ -8,5 +8,5 @@ "no-implicit-button-type": "off" }, - "root": true + "root": true } From d990b576ab2e0113e0526bde4ec59c861f50ddff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Fri, 3 May 2024 11:32:16 +0200 Subject: [PATCH 17/25] submodules --- src/Utilities/Lombiq.NodeJs.Extensions | 2 +- test/Lombiq.UITestingToolbox | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Utilities/Lombiq.NodeJs.Extensions b/src/Utilities/Lombiq.NodeJs.Extensions index 4bcc86d0c..90c337ca9 160000 --- a/src/Utilities/Lombiq.NodeJs.Extensions +++ b/src/Utilities/Lombiq.NodeJs.Extensions @@ -1 +1 @@ -Subproject commit 4bcc86d0c1c9a5ad45411e82aae2ddecdea5212e +Subproject commit 90c337ca9b4a2ae66f4e0514d895ec6877d7e183 diff --git a/test/Lombiq.UITestingToolbox b/test/Lombiq.UITestingToolbox index 03e360572..bd197e6d5 160000 --- a/test/Lombiq.UITestingToolbox +++ b/test/Lombiq.UITestingToolbox @@ -1 +1 @@ -Subproject commit 03e36057253457376cccd06d416ccb9708c8a4f2 +Subproject commit bd197e6d5aa64314df49902e9d3f2ba1ebba83b0 From e76554029edc9041cab340b0316885c33b83d6c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Fri, 3 May 2024 11:57:07 +0200 Subject: [PATCH 18/25] Fix md. --- test/Lombiq.UITestingToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Lombiq.UITestingToolbox b/test/Lombiq.UITestingToolbox index bd197e6d5..b3801474d 160000 --- a/test/Lombiq.UITestingToolbox +++ b/test/Lombiq.UITestingToolbox @@ -1 +1 @@ -Subproject commit bd197e6d5aa64314df49902e9d3f2ba1ebba83b0 +Subproject commit b3801474d2135a8c96c5defaad0f297374b902b3 From cf4352e340eb9633ea0ee0d412bba2cce1b03678 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Fri, 3 May 2024 15:04:11 +0200 Subject: [PATCH 19/25] submodules --- src/Libraries/Lombiq.HelpfulLibraries | 2 +- src/Modules/Lombiq.VueJs | 2 +- src/Themes/Lombiq.BaseTheme | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Libraries/Lombiq.HelpfulLibraries b/src/Libraries/Lombiq.HelpfulLibraries index 14428732f..29f36e151 160000 --- a/src/Libraries/Lombiq.HelpfulLibraries +++ b/src/Libraries/Lombiq.HelpfulLibraries @@ -1 +1 @@ -Subproject commit 14428732f295b91ef7fa55d7ab1a49eeb219185d +Subproject commit 29f36e1517fc2b4428d79eaa739f7d0c16c469c3 diff --git a/src/Modules/Lombiq.VueJs b/src/Modules/Lombiq.VueJs index 8b0e6fa30..bb8f5f03e 160000 --- a/src/Modules/Lombiq.VueJs +++ b/src/Modules/Lombiq.VueJs @@ -1 +1 @@ -Subproject commit 8b0e6fa30298875733135ec20837211bf700c4c5 +Subproject commit bb8f5f03e711c11773a9384df367b540f2acc5b2 diff --git a/src/Themes/Lombiq.BaseTheme b/src/Themes/Lombiq.BaseTheme index ff1bde000..5af037226 160000 --- a/src/Themes/Lombiq.BaseTheme +++ b/src/Themes/Lombiq.BaseTheme @@ -1 +1 @@ -Subproject commit ff1bde000eca265b8a49510e51f1cf6262df3f39 +Subproject commit 5af0372269b0b09a83842dc9854cec96a4c5e313 From 7e4462be7b72fe349e245252579ecc1db9025022 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Fri, 3 May 2024 15:07:33 +0200 Subject: [PATCH 20/25] Remove CloneWith. --- test/Lombiq.UITestingToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Lombiq.UITestingToolbox b/test/Lombiq.UITestingToolbox index b3801474d..64decbcdf 160000 --- a/test/Lombiq.UITestingToolbox +++ b/test/Lombiq.UITestingToolbox @@ -1 +1 @@ -Subproject commit b3801474d2135a8c96c5defaad0f297374b902b3 +Subproject commit 64decbcdf8c8c120afa0d18f8c7a2a6fa76b30ce From 63383b885c568d1f05058a1067f26cda9a905ccc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Sun, 5 May 2024 23:43:49 +0200 Subject: [PATCH 21/25] temporarily increase timeout to see whats the hangup --- .github/workflows/build-and-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index f50482a15..e2269c9e6 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -15,7 +15,7 @@ jobs: with: parent-job-name: "root-solution-larger-runners" machine-types: "['buildjet-4vcpu-ubuntu-2204']" - timeout-minutes: 30 + timeout-minutes: 130 set-up-sql-server: "true" set-up-azurite: "true" ui-test-parallelism: 0 From 867064f1c3d6932525a872f2d89bbc15d0c445cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Mon, 6 May 2024 00:30:24 +0200 Subject: [PATCH 22/25] revert --- .github/workflows/build-and-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index e2269c9e6..f50482a15 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -15,7 +15,7 @@ jobs: with: parent-job-name: "root-solution-larger-runners" machine-types: "['buildjet-4vcpu-ubuntu-2204']" - timeout-minutes: 130 + timeout-minutes: 30 set-up-sql-server: "true" set-up-azurite: "true" ui-test-parallelism: 0 From 09bc1d9a7bcba24f1bdaffad5de59c4da11586f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Mon, 6 May 2024 01:23:53 +0200 Subject: [PATCH 23/25] Add missing root option. Without it html-validate is looking for the "./default.htmlvalidate.json" at the completely wrong location. --- test/Lombiq.UITestingToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Lombiq.UITestingToolbox b/test/Lombiq.UITestingToolbox index 64decbcdf..946887478 160000 --- a/test/Lombiq.UITestingToolbox +++ b/test/Lombiq.UITestingToolbox @@ -1 +1 @@ -Subproject commit 64decbcdf8c8c120afa0d18f8c7a2a6fa76b30ce +Subproject commit 94688747894c0915961e57fe92f1d4ebc276b79a From 6c3bec4ab2bbcf9da678e7d05feae52274a5937c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Mon, 6 May 2024 01:25:10 +0200 Subject: [PATCH 24/25] submodule --- test/Lombiq.UITestingToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Lombiq.UITestingToolbox b/test/Lombiq.UITestingToolbox index 946887478..abc3af159 160000 --- a/test/Lombiq.UITestingToolbox +++ b/test/Lombiq.UITestingToolbox @@ -1 +1 @@ -Subproject commit 94688747894c0915961e57fe92f1d4ebc276b79a +Subproject commit abc3af159817b2aa315222c35168b09d5beaaaac From 78d15831a8088f318534b2f448e569942fcc150d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Leh=C3=B3czky?= Date: Mon, 6 May 2024 20:34:56 +0200 Subject: [PATCH 25/25] Updating submodules to merged dev [skip ci] --- test/Lombiq.UITestingToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Lombiq.UITestingToolbox b/test/Lombiq.UITestingToolbox index abc3af159..499864e4b 160000 --- a/test/Lombiq.UITestingToolbox +++ b/test/Lombiq.UITestingToolbox @@ -1 +1 @@ -Subproject commit abc3af159817b2aa315222c35168b09d5beaaaac +Subproject commit 499864e4b5dfbec05f1dbfa5476a08e8aa193a4b