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

API失敗時のテストコード: apiモジュールの再編 #119

Conversation

YuukiToriyama
Copy link
Owner

@YuukiToriyama YuukiToriyama commented Jan 10, 2024

変更点

mockitoを使ったテストコードを書くための前段として、apiモジュールを整理した。

  • PrefectureMasterApi, CityMasterApiをそれぞれ作成
    • それぞれserver_urlというメンバを持たせるようにした
    • 後のPRで、server_urlにテスト用サーバーのURLを指定できるようにする
  • 既存のApi/ApiImpl, BlockingApi/Clientを削除
  • 新しくApi/ApiImpl, BlockingApi/BlockingApiImplを作成
    • 新規作成したPrefectureMasterApi, CityMasterApiを使っている

備考

都道府県マスタを取得するためのモジュール
市区町村マスタを取得するためのモジュール
`client.rs`, `blocking.rs`にそれぞれ書いていたものを移植している
`client.rs`, `blocking.rs`にそれぞれ書いていたものを移植している
…asterApiを持つような実装に変更

ライフタイムの関係でコンパイルができないため
…piとCityMasterApiを持つような実装に変更

ライフタイムの関係でコンパイルができないため
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ [clippy] reported by reviewdog 🐶

warning: you should consider adding a `Default` implementation for `Parser`
  --> src/lib.rs:18:5
   |
18 | /     pub fn new() -> Self {
19 | |         Parser {}
20 | |     }
   | |_____^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#new_without_default
   = note: `#[warn(clippy::new_without_default)]` on by default
help: try adding this
   |
16 + impl Default for Parser {
17 +     fn default() -> Self {
18 +         Self::new()
19 +     }
20 + }
   |

@YuukiToriyama YuukiToriyama merged commit ac3c02c into feature/unit-test-on-api-failed/master Jan 10, 2024
1 check passed
@YuukiToriyama YuukiToriyama deleted the feature/unit-test-on-api-failed/re-organization-api-module branch September 2, 2024 05:00
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.

1 participant