- Must provide a REST endpoint that delivers a collection resource in JSON.
- The
/allendpoint returns a collection resource in JSON.
- The
- Must provide a REST endpoint that delivers a singleton resource in JSON.
- The
/movie/{title}endpoint returns a singleton resource in JSON.
- The
- Must provide a REST endpoint that allows search of 1 Oscar category and returns results containing the nominees in JSON.
- The
/category/{name}endpoint returns a collection resource of a specific Oscar category in JSON.
- The
- Must provide a minimum level of documentation regarding access, input, and output to your API endpoints.
- API endpoint access documented in the wiki.
- Must have a product vision.
- Must have one persona.
- Must store source code in a repository such as GitHub
- Instructor must receive invite to/location of repository.
- There must be evidence of ongoing repository activity for each sprint.
- Must use Flying Donut to track and adhere to Scrum Process
- Instructor must receive invite to/location of project.
- Must implement AT LEAST one user story per sprint.
- Must incorporate unit testing for a minimum of 2 classes.
- Unit tests implemented for both the Movie class, and the Award class.
- Presentation details
- Slides
- Discuss project and/or process
- Demo a working project
- The results returned contain data which correlates the Oscar category results with additional data from an outside source such as OMDb, TMDb, TVDb etc. by providing a link to an external site for the movie.
- OMDb is used when the singleton endpoint
/movie/{title}is called. This provides a link to the IMDb page.
- OMDb is used when the singleton endpoint
- The search feature allows limiting results to a date range.
/alltakes optional parameters to specify a year range. For example:/all/1950or/all/1950/1955.
- More than one category can be searched.
- The
/category/{name}category can search any of the Oscar categories listed here.
- The
- More than one endpoint that delivers a collection resource.
/all,/category/{name}, and/winnerreturn collection resources.
- More than one endpoint that delivers a singleton resource.
/movieand/randomreturn singleton resources, a movie by title or a randomly selected movie, respectively.
- GUI for the product (or portions thereof).
- The GUI can be accessed at the root,
localhost:8080/
- The GUI can be accessed at the root,
- Well-designed HTML page documenting API endpoints and example inputs/outputs.
- A page documenting API endpoints, including example input and output, can be found here in the wiki.
- Incorporate test-driven development practice for one Sprint.
- Refactor code in a significant manner with a clear and stated goal for refactoring.
- The repeated code in
FetchFromCSVwas refactored in a manner that was tracked via Flying Donut #159. This was merged in #26.
- The repeated code in
- Incorporate Contextual Inquiry/Elicitation techniques to create visual persona(s) and develop additional personas.
- Create mockups for proposed GUI (even if not implemented).
- Mockups can be viewed here.
- Incorporate pair programing during one Sprint.
- Incorporate one or more design patterns.
- Adopt a coding standard and follow it.
- The team adopted a coding standard, and enforced it via these files.
- Use a database to store and retrieve Oscar data using queries.
- Analyze code using SonarQube or similar tool.
- We analyzed our code using SonarQube, and documented it here.
- Explain and document obstacles encountered during the project and how those obstacles were handled.
- All obstacles encountered by the team were documented/discussed using GitHub's issue/pull request system, the entire stream can be viewed here.