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

當假單被刪除或駁回時,可以從 LeaveTime 之 locked_hours return usable_hours #115

Merged
merged 8 commits into from
May 12, 2017

Conversation

Alexius-Huang
Copy link
Contributor

@Alexius-Huang Alexius-Huang commented May 5, 2017

issue #77
但這邊駁回目前不知道為何無效(駁回完全沒動作)

@Alexius-Huang
Copy link
Contributor Author

Alexius-Huang commented May 7, 2017

@Eileen0917 已經修好駁回的bug 請再測試幾種情形(A, B 分別為不同的使用者):

1. A 駁回 A自己 / B 的假單有沒有正確的 return locked_hours 到 usable_hours
2. A 取消 A自己 / B 的假單有沒有正確的 return locked_hours 到 usable_hours

然後順便run run 看 bundle exec rspec 來檢測目前測試狀況應該是要有 2 個 example 是 pending 狀態 <3

@Alexius-Huang
Copy link
Contributor Author

@YushengLi
Spec 已完成,新增的 spec 如下:

1. LeaveApplication #callback spec - 當 LeaveApplication 創建完成後 (after_create) 會呼叫 create_leave_time_usages 方法,創建相對應的 LeaveTimeUsage
2. LeaveTimeUsage #callback spec - 當 LeaveTimeUsage 創建完成後 (after_create) 會呼叫 lock_leave_time_hours 方法,將對應的 LeaveTime usable_hours 轉成 locked_hours
3. LeaveTime #lock_hours spec - 將 usable hours 轉成 locked_hours
4. LeaveTime #unlock_hours spec - 將 locked_hours 轉成 usable_hours
5. LeaveTIme #cover? - 檢查 cover? 方法後面傳的時間有沒有在 effective 以及 expiration date 之間,若有或者是剛好等於 eff / exp date 則回傳 true

@Alexius-Huang Alexius-Huang force-pushed the feature/issue-77 branch 2 times, most recently from ffbe396 to 75a519a Compare May 9, 2017 02:23
@Alexius-Huang
Copy link
Contributor Author

Alexius-Huang commented May 9, 2017

@Eileen0917 已經再次更新了,再測一個小東西,如果假單被駁回或者被刪除時,不會出現取消的按鈕(編輯的按鈕出現狀況會在 #38 處理) 辛苦了> <

@Eileen0917
Copy link
Contributor

Eileen0917 commented May 9, 2017

操作測試ok

Copy link
Contributor

@Eileen0917 Eileen0917 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

LeaveTimeUsage.where(leave_application: self).each do |usage|
usage.leave_time.unlock_hours!(usage.used_hours)
usage.destroy
end
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

之後可能會再新增 before_destroy callback 並判斷要 unlock_hours 還是 unuse_hours

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

為什麼不使用 leave_time_usages.each { ... }

LeaveTimeUsage.where(leave_application: self).each do |usage|
usage.leave_time.unlock_hours!(usage.used_hours)
usage.destroy
end
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

為什麼不使用 leave_time_usages.each { ... }


describe "#callback" do
context "should lock LeaveTime usable_hours after LeaveTimeUsage created" do
it { is_expected.to callback(:lock_leave_time_hours).after(:create) }
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

這邊只有測到確保 :lock_leave_time_hours 有被執行,應該要做一下結果的 assertion 確保執行後的結果是不是正確?

@@ -61,6 +61,12 @@
end
end

describe "#callback" do
context "should create LeaveTimeUsage after LeaveApplication created" do
it { is_expected.to callback(:create_leave_time_usages).after(:create) }
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

這邊只有測到確保 : create_leave_time_usages 有被執行,應該要做一下結果的 assertion 確保執行後的結果是不是正確?

Copy link
Contributor

@Eileen0917 Eileen0917 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants