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

CI: split load shedder integration tests #3675

Merged
merged 1 commit into from
Feb 12, 2024
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
30 changes: 19 additions & 11 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -977,20 +977,14 @@ jobs:
name: Create automatic PR
command: bundle exec fastlane automatic_bump github_rate_limit:10

loadshedder-integration-tests:
integration-tests-all:
<<: *base-job
steps:
- checkout
- setup-git-credentials
- trust-github-key
- install-dependencies
- update-spm-installation-commit
- run:
name: V3 LoadShedder integration tests
command: bundle exec fastlane v3_loadshedder_integration_tests
- compress_result_bundle:
directory: fastlane/test_output/xctest/ios
bundle_name: v3LoadShedderIntegration
- run:
name: Backend and LoadShedder integration tests
command: bundle exec fastlane backend_integration_tests test_plan:"BackendIntegrationTests-All-CI"
Expand All @@ -1005,6 +999,21 @@ jobs:
- store_artifacts:
path: fastlane/test_output/xctest
destination: scan-test-output

loadshedder-integration-tests-v3:
<<: *base-job
steps:
- checkout
- setup-git-credentials
- trust-github-key
- install-dependencies
- update-spm-installation-commit
- run:
name: V3 LoadShedder integration tests
command: bundle exec fastlane v3_loadshedder_integration_tests
- compress_result_bundle:
directory: fastlane/test_output/xctest/ios
bundle_name: v3LoadShedderIntegration

deploy-purchase-tester:
<<: *base-job
Expand Down Expand Up @@ -1178,9 +1187,6 @@ workflows:
branches:
# Forked pull requests have CIRCLE_BRANCH set to pull/XXX
ignore: /pull\/[0-9]+/
- loadshedder-integration-tests:
xcode_version: '15.2'
<<: *release-branches

deploy:
when:
Expand Down Expand Up @@ -1274,7 +1280,9 @@ workflows:
- equal: [ scheduled_pipeline, << pipeline.trigger_source >> ]
- equal: [ "load_shedder_integration_tests", << pipeline.schedule.name >> ]
jobs:
- loadshedder-integration-tests:
- loadshedder-integration-tests-v3:
xcode_version: '15.2'
- integration-tests-all:
xcode_version: '15.2'

manual-trigger-bump:
Expand Down
77 changes: 77 additions & 0 deletions BackendIntegrationTests/BackendIntegrationTests-Shedder.xctestplan
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
{
"configurations" : [
{
"id" : "62C79EF4-8071-439C-B693-34F1E57211FC",
"name" : "Configuration 1",
"options" : {
"testTimeoutsEnabled" : true
}
}
],
"defaultOptions" : {
"codeCoverage" : false,
"environmentVariableEntries" : [
{
"key" : "RCMockAdServicesToken",
"value" : "G9i5hC8lQJeGOfmS+MFycll"
},
{
"key" : "RCRunningTests",
"value" : "1"
},
{
"key" : "RCRunningIntegrationTests",
"value" : "1"
}
],
"maximumTestExecutionTimeAllowance" : 180,
"maximumTestRepetitions" : 5,
"targetForVariableExpansion" : {
"containerPath" : "container:RevenueCat.xcodeproj",
"identifier" : "2DE20B7E26409EB7004C597D",
"name" : "BackendIntegrationTestsHostApp"
},
"testExecutionOrdering" : "random",
"testRepetitionMode" : "retryOnFailure",
"testTimeoutsEnabled" : true
},
"testTargets" : [
{
"skippedTests" : [
"BaseBackendIntegrationTests",
"BaseOfflineStoreKitIntegrationTests",
"BaseSignatureVerificationIntegrationTests",
"BaseStoreKitIntegrationTests",
"BaseStoreKitObserverModeIntegrationTests",
"DisabledSignatureVerificationIntegrationTests",
"DynamicModeSignatureVerificationIntegrationTests",
"EnforcedSignatureVerificationIntegrationTests",
"InformationalSignatureVerificationIntegrationTests",
"OfflineStoreKit1IntegrationTests",
"OfflineStoreKit2IntegrationTests",
"OfflineStoreKit2JWSIntegrationTests",
"OfflineWithNoMappingStoreKitIntegrationTests",
"OtherIntegrationTests",
"PaywallEventsIntegrationTests",
"SignatureVerificationWithoutHeaderHashIntegrationTests",
"StoreKit1IntegrationTests",
"StoreKit1ObserverModeIntegrationTests",
"StoreKit1ObserverModeWithExistingPurchasesTests",
"StoreKit2IntegrationTests",
"StoreKit2JWSIntegrationTests",
"StoreKit2JWSObserverModeIntegrationTests",
"StoreKit2JWSObserverModeWithExistingPurchasesTests",
"StoreKit2ObserverModeIntegrationTests",
"StoreKit2ObserverModeWithExistingPurchasesTests",
"SubscriberAttributesManagerIntegrationTests",
"TestCase"
],
"target" : {
"containerPath" : "container:RevenueCat.xcodeproj",
"identifier" : "2DE20B6B264087FB004C597D",
"name" : "BackendIntegrationTests"
}
}
],
"version" : 1
}
2 changes: 2 additions & 0 deletions RevenueCat.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1019,6 +1019,7 @@
4F34AEEB2A5DCCBA00F4BCB0 /* VerificationResultTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VerificationResultTests.swift; sourceTree = "<group>"; };
4F3C98692A44FA60009AECA3 /* ErrorResponse.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ErrorResponse.swift; sourceTree = "<group>"; };
4F3D56622A1E66A10070105A /* CustomerInfoManagerPostReceiptTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomerInfoManagerPostReceiptTests.swift; sourceTree = "<group>"; };
4F4EBE202B7A85D400E57264 /* BackendIntegrationTests-Shedder.xctestplan */ = {isa = PBXFileReference; lastKnownFileType = text; path = "BackendIntegrationTests-Shedder.xctestplan"; sourceTree = "<group>"; };
4F4EECE32AAFA8DA0047DE7A /* __Snapshots__ */ = {isa = PBXFileReference; lastKnownFileType = folder; path = __Snapshots__; sourceTree = "<group>"; };
4F4FF3E02A3B731A0028018C /* ETagStrings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ETagStrings.swift; sourceTree = "<group>"; };
4F520EF22B06C7A700DB6770 /* CI-RevenueCat-Snapshots.xctestplan */ = {isa = PBXFileReference; lastKnownFileType = text; name = "CI-RevenueCat-Snapshots.xctestplan"; path = "Tests/TestPlans/CI-RevenueCat-Snapshots.xctestplan"; sourceTree = "<group>"; };
Expand Down Expand Up @@ -2418,6 +2419,7 @@
4FE3A57E2B4C6BB40006A7FC /* BackendIntegrationTests-Other.xctestplan */,
4FE3A57D2B4C6BB40006A7FC /* BackendIntegrationTests-SK1.xctestplan */,
4FE3A57F2B4C6C560006A7FC /* BackendIntegrationTests-SK2.xctestplan */,
4F4EBE202B7A85D400E57264 /* BackendIntegrationTests-Shedder.xctestplan */,
);
path = BackendIntegrationTests;
sourceTree = "<group>";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@
<TestPlanReference
reference = "container:BackendIntegrationTests/BackendIntegrationTests-All-CI.xctestplan">
</TestPlanReference>
<TestPlanReference
reference = "container:BackendIntegrationTests/BackendIntegrationTests-Shedder.xctestplan">
</TestPlanReference>
</TestPlans>
<Testables>
<TestableReference
Expand Down