Skip to content

duyetnt/nab-development-challenge

Repository files navigation

NAB development challenge

Hi there, thanks for taking the time to review my exercise and I hope you will enjoy (reviewing) it. Your comments are much appreciated regardless of the result so please help me understand what I should improve in the future.

1. Architecture

It's written in MVVM-C using Input/Output approach. It's quite similar to the traditional version, just that using Input/Output helps us make the responsibility clearer.

  • Input: Receive user interaction events (updating search text...)
  • Output: Provide all the data for View to visualize (list of weather items, showing loading indicator, error message...)
  • Coordinator: Handle UI navigation.

2. Code structure

WeatherForecast

This consists of files being used in the main target.

  • Extensions: Extend some existing classes/structs such as UIView, Collection...
  • Foundation: Declare some protocols/base classes being used across the app such as Coordinator/BaseCoordinator...
  • App: Consists of AppDelegate and AppCoordinator which is the app's entry point.
  • Services: All the API services to interact with BE. Each service is responsible for sending the request to BE and parsing the response or handling failures.
  • Screens: Every screen's MVVM components are located in this folder.

WeatherForecastUnitTests

This contains all unit tests, mock classes and extensions that being used in unit tests such as WeatherForecastServiceTests, MainViewModelTests or MockWeatherForecastService

WeatherForecastUITests

This contains all component acceptance tests (aka UI tests).

LocalPods

The libs that can be shared between the main target and unit/UI test target are located in LocalPods such as NetworkStubber, AccessIDs.

3. Third-party libraries

Below is the list of third-party libraries that I use in the project:

  • RxSwift: It is this project's backbone to seamlessly manipulate UI events (binding between ViewModel and View) as well as API requests/responses. By transforming everything to a sequence of events, it not only makes the logic more understandable and concise but also helps us get rid of the old approach like adding target, delegates, closures which we might feel tedious sometimes.
  • RxTest/RxBlocking: To test RxSwift code.
  • Moya/RxSwift: To encapsulate API calls in a reactive way by taking advantage of RxSwift.
  • SnapKit: To write auto-layout code easier.
  • Quick/Nimble: Those libraries are very famous in Behavior Driven Testing approach, which provides a powerful syntax to write English-friendly tests.
  • OHHTTPStubs/Swift: To intercept network requests and return the mock data in tests.
  • Shock: A HTTP mocking framework to set up mock data in UI test (https://tech.just-eat.com/2019/03/05/shock-better-automation-testing-for-ios/)

4. Build the project on local

After cloning the repo, please run pod install from your terminal then open WeatherForecast.xcworkspace and try to build the project using Xcode 11.3.1. It should work without any additional steps.

When running UI test, please make sure the hardware keyboard is disconnected (Simulator --> Hardware --> Keyboard --> Toggle off Connect Hardware Keyboard).

5. Checklist

  • Programming language: Swift

  • Design app's architecture: MVVM-C

  • UI matches in the attachment

  • Unit tests

  • Acceptance tests

  • Exception handling

  • Caching handling

  • Accessibility for Disability supports

Thanks and have a nice day ahead.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published