-
Notifications
You must be signed in to change notification settings - Fork 8
Add configuration item for .xcconfig file in ios_get_app_version
#445
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
Merged
AliSoftware
merged 5 commits into
wordpress-mobile:iangmaia/trial
from
iangmaia:add/xconfig-param-on-ios_get_app_version
Feb 10, 2023
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
476cf80
Add ConfigItem for .xcconfig to replace env var on ios_get_app_version
iangmaia 9add5bf
Add unit tests for the ios_get_app_version action
iangmaia c1bb8a4
Update changelog
iangmaia 60a350c
Fix unit test that broke due changes in `Ios::VersionHelper`
iangmaia fce43b3
Change `ios_get_app_version` environment var to a more generic one, s…
iangmaia File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| require 'spec_helper' | ||
|
|
||
| describe Fastlane::Actions::IosGetAppVersionAction do | ||
| describe 'getting the public app version from the provided .xcconfig file' do | ||
| it 'parses the xcconfig file format correctly and gets the public version' do | ||
| xcconfig_mock_content = <<~CONTENT | ||
| // a comment | ||
| VERSION_SHORT=6 | ||
| VERSION_LONG=6.30.0 | ||
| CONTENT | ||
|
|
||
| allow(File).to receive(:exist?).and_return(true) | ||
|
|
||
| expect_version(xcconfig_mock_content: xcconfig_mock_content, expected_version: '6.30') | ||
| end | ||
|
|
||
| it 'parses the xcconfig file format correctly and gets the public hotfix version' do | ||
| xcconfig_mock_content = <<~CONTENT | ||
| VERSION_SHORT=6 | ||
| // a comment | ||
| VERSION_LONG=6.30.1 | ||
| CONTENT | ||
|
|
||
| allow(File).to receive(:exist?).and_return(true) | ||
|
|
||
| expect_version(xcconfig_mock_content: xcconfig_mock_content, expected_version: '6.30.1') | ||
| end | ||
|
|
||
| def expect_version(xcconfig_mock_content:, expected_version:) | ||
| xcconfig_mock_file_path = File.join('mock', 'file', 'path') | ||
|
|
||
| allow(File).to receive(:open).with(xcconfig_mock_file_path, 'r').and_yield(StringIO.new(xcconfig_mock_content)) | ||
AliSoftware marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| version_result = run_described_fastlane_action( | ||
| public_version_xcconfig_file: xcconfig_mock_file_path | ||
| ) | ||
|
|
||
| expect(version_result).to eq(expected_version) | ||
| end | ||
| end | ||
| end | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.