-
Notifications
You must be signed in to change notification settings - Fork 9
Add Unit tests for milestone actions #425
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
base: trunk
Are you sure you want to change the base?
Changes from 3 commits
c37f29e
6dfd767
22b9d44
96acb93
f695b04
3472f9e
cdd96c2
3a5a240
5e656dd
b6de4cd
9eb95c2
87ae1d4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,6 +11,10 @@ def self.run(params) | |
|
|
||
| github_helper = Fastlane::Helper::GithubHelper.new(github_token: params[:github_token]) | ||
| last_stone = github_helper.get_last_milestone(repository) | ||
|
|
||
| UI.user_error!('No milestone found on the repository.') if last_stone.nil? | ||
| UI.user_error!("Milestone #{last_stone[:title]} has no due date.") if last_stone[:due_on].nil? | ||
|
|
||
| UI.message("Last detected milestone: #{last_stone[:title]} due on #{last_stone[:due_on]}.") | ||
| milestone_duedate = last_stone[:due_on] | ||
| milestone_duration = params[:milestone_duration] | ||
|
|
@@ -49,19 +53,19 @@ def self.available_options | |
| env_name: 'GHHELPER_NEED_APPSTORE_SUBMISSION', | ||
| description: 'True if the app needs to be submitted', | ||
| optional: true, | ||
| is_string: false, | ||
| type: Boolean, | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Self-Review: As the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is great! It's even a small step towards addressing #278 that we opened a while ago about this 🙂 |
||
| default_value: false), | ||
| FastlaneCore::ConfigItem.new(key: :milestone_duration, | ||
| env_name: 'GHHELPER_MILESTONE_DURATION', | ||
| description: 'Milestone duration in number of days', | ||
| optional: true, | ||
| is_string: false, | ||
| type: Integer, | ||
| default_value: 14), | ||
| FastlaneCore::ConfigItem.new(key: :number_of_days_from_code_freeze_to_release, | ||
| env_name: 'GHHELPER_NUMBER_OF_DAYS_FROM_CODE_FREEZE_TO_RELEASE', | ||
| description: 'Number of days from code freeze to release', | ||
| optional: true, | ||
| is_string: false, | ||
| type: Integer, | ||
| default_value: 14), | ||
| Fastlane::Helper::GithubHelper.github_token_config_item, | ||
| ] | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,105 +1,86 @@ | ||||||||||||||||||||
| require 'spec_helper' | ||||||||||||||||||||
|
|
||||||||||||||||||||
| describe Fastlane::Actions::CloseMilestoneAction do | ||||||||||||||||||||
| describe 'initialize' do | ||||||||||||||||||||
| let(:test_token) { 'Test-GithubToken-1234' } | ||||||||||||||||||||
| let(:mock_params) do | ||||||||||||||||||||
| { | ||||||||||||||||||||
| repository: 'test-repository', | ||||||||||||||||||||
| milestone: '10' | ||||||||||||||||||||
| } | ||||||||||||||||||||
| end | ||||||||||||||||||||
| let(:client) do | ||||||||||||||||||||
| instance_double( | ||||||||||||||||||||
| Octokit::Client, | ||||||||||||||||||||
| list_milestones: [{ title: '10.1' }], | ||||||||||||||||||||
| update_milestone: nil, | ||||||||||||||||||||
| user: instance_double('User', name: 'test'), | ||||||||||||||||||||
| 'auto_paginate=': nil | ||||||||||||||||||||
| ) | ||||||||||||||||||||
| end | ||||||||||||||||||||
| let(:test_repository) { 'test-repository' } | ||||||||||||||||||||
| let(:test_token) { 'Test-GithubToken-1234' } | ||||||||||||||||||||
| let(:test_milestone) do | ||||||||||||||||||||
| { title: '10.1', number: '1234' } | ||||||||||||||||||||
| end | ||||||||||||||||||||
| let(:client) do | ||||||||||||||||||||
| instance_double( | ||||||||||||||||||||
| Octokit::Client, | ||||||||||||||||||||
| list_milestones: [test_milestone], | ||||||||||||||||||||
| update_milestone: nil, | ||||||||||||||||||||
| user: instance_double('User', name: 'test'), | ||||||||||||||||||||
| 'auto_paginate=': nil | ||||||||||||||||||||
| ) | ||||||||||||||||||||
| end | ||||||||||||||||||||
|
|
||||||||||||||||||||
| before do | ||||||||||||||||||||
| ENV['GITHUB_TOKEN'] = nil | ||||||||||||||||||||
| mock_params[:github_token] = nil | ||||||||||||||||||||
| allow(Octokit::Client).to receive(:new).and_return(client) | ||||||||||||||||||||
| end | ||||||||||||||||||||
| before do | ||||||||||||||||||||
| allow(Octokit::Client).to receive(:new).and_return(client) | ||||||||||||||||||||
| end | ||||||||||||||||||||
|
|
||||||||||||||||||||
| it 'properly passes the environment variable `GITHUB_TOKEN` all the way to Octokit::Client' do | ||||||||||||||||||||
| ENV['GITHUB_TOKEN'] = test_token | ||||||||||||||||||||
| expect(Octokit::Client).to receive(:new).with(access_token: test_token) | ||||||||||||||||||||
| run_described_fastlane_action(mock_params) | ||||||||||||||||||||
| end | ||||||||||||||||||||
| it 'properly passes the environment variable `GITHUB_TOKEN` to Octokit::Client' do | ||||||||||||||||||||
| ENV['GITHUB_TOKEN'] = test_token | ||||||||||||||||||||
| expect(Octokit::Client).to receive(:new).with(access_token: test_token) | ||||||||||||||||||||
| run_action_without_key(:github_token) | ||||||||||||||||||||
| end | ||||||||||||||||||||
|
|
||||||||||||||||||||
| it 'properly passes the parameter `:github_token` all the way to Octokit::Client' do | ||||||||||||||||||||
| mock_params[:github_token] = test_token | ||||||||||||||||||||
| expect(Octokit::Client).to receive(:new).with(access_token: test_token) | ||||||||||||||||||||
| run_described_fastlane_action(mock_params) | ||||||||||||||||||||
| end | ||||||||||||||||||||
| it 'properly passes the parameter `:github_token` to Octokit::Client' do | ||||||||||||||||||||
| expect(Octokit::Client).to receive(:new).with(access_token: test_token) | ||||||||||||||||||||
| run_described_fastlane_action(default_params) | ||||||||||||||||||||
| end | ||||||||||||||||||||
|
|
||||||||||||||||||||
| it 'prioritizes `:github_token` parameter over `GITHUB_TOKEN` enviroment variable if both are present' do | ||||||||||||||||||||
| ENV['GITHUB_TOKEN'] = 'Test-EnvGithubToken-1234' | ||||||||||||||||||||
| mock_params[:github_token] = test_token | ||||||||||||||||||||
| expect(Octokit::Client).to receive(:new).with(access_token: test_token) | ||||||||||||||||||||
| run_described_fastlane_action(mock_params) | ||||||||||||||||||||
| end | ||||||||||||||||||||
| it 'prioritizes `:github_token` parameter over `GITHUB_TOKEN` environment variable if both are present' do | ||||||||||||||||||||
| ENV['GITHUB_TOKEN'] = 'Test-EnvGithubToken-1234' | ||||||||||||||||||||
| expect(Octokit::Client).to receive(:new).with(access_token: test_token) | ||||||||||||||||||||
| run_described_fastlane_action(default_params) | ||||||||||||||||||||
| end | ||||||||||||||||||||
|
|
||||||||||||||||||||
| it 'prints an error if no `GITHUB_TOKEN` environment variable nor parameter `:github_token` is present' do | ||||||||||||||||||||
| expect { run_described_fastlane_action(mock_params) }.to raise_error(FastlaneCore::Interface::FastlaneError) | ||||||||||||||||||||
| end | ||||||||||||||||||||
| it 'properly passes the repository and milestone to Octokit::Client to update the milestone as closed' do | ||||||||||||||||||||
|
||||||||||||||||||||
| it 'properly passes the repository and milestone to Octokit::Client to update the milestone as closed' do | |
| it 'closes the expected milestone on the expected repository' do |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit:
| def run_action_without_key(key) | |
| def run_action_without(key:) |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: why not make this more flexible by allowing it to take a **options-style Hash as parameter so you can not only have a nicer call site, but also one that looks like it uses named parameters?
| def run_action_with(key, value) | |
| values = default_params | |
| values[key] = value | |
| run_described_fastlane_action(values) | |
| end | |
| def run_action_with(**keys_and_values) | |
| params = default_params.merge(keys_and_values) | |
| run_described_fastlane_action(params) | |
| end |
Should allow the call site to look like:
run_action_with(milestone: '10')There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I see that you suggested that above, but forget to change it on the newest commit, sorry for that, Already change it 👍
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, here it is! When I saw default_params mentioned above in the code, I expected it to be a let(:default_params) and thus looked for it alongside all the other let declarations at the top, instead of here at the bottom 🙃
Any reason why this is a method here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That confused me a bit tbh 🤔.
Because, If I put those in a let(:default_params) and then remove params from it, like I'm doing on the run_action_without(key), as let means that this is a constant by convention and as you stated here, that although is allowed is not right and should be avoided.
I thought if I put the parameters again as a let and then do those operations, I will be breaking the conventions again. 😅
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
except is not a mutation method tho (unlike [])
Uh oh!
There was an error while loading. Please reload this page.