PingChatz / PingClient-Swing

Creative Commons Zero v1.0 Universal
0 stars 0 forks source link

Lab 5: Logout

Preamble

In the current homework, you added code to the login use case to save the currently-logged-in user by saving the user in the Data Access Layer. You also added a unit test for this.

In this lab, you will complete a logout use case as a team. You will also begin to discuss your project and the use cases that need to be implemented.

We have created all the Clean Architecture classes necessary for the logout use case.

By Friday, your team will submit:

Phase 2 [for credit]

(recall, Phase 1 was your solo task of adding the storage of the currently-logged-in user)

Task 0: Fork this repo on GitHub

To get started, one team member should fork this repo on GitHub and share it with the team. All of you should then clone it.


Suggested logistics: One of you should invite the others to collaborate on their fork of the original repo on GitHub. You can do this in your repo on GitHub under Settings -> Collaborators. This will allow you to push branches to a common repo and then use pull requests to contribute your code and review. To prevent others from pushing directly to the main branch, we recommend you set branch protection rules on GitHub. Below are how the settings might look if you add branch protection rules:

image of branch protection rules for main with the
requirement of two approvers to merge in pull requests.


Open the project in IntelliJ and make sure you can successfully run app/Main.java. Note: you may need to set the Project SDK in the Project Structure... menu, and possibly also manually link the Maven project, as you did in Phase 1.

Task 1: Understanding the Program

You may notice that we have refactored the CA engine code slightly since Phase 1, but the way we build the engine is drastically different: we have switched from using Factories to using the Builder design pattern, which we'll be discussing in lecture soon.

Open up app.Main and read it as a team.

The major change since Phase 1 is that we have added the app.AppBuilder class which makes it easier to understand how our CA engine is being constructed — it also makes app.Main nice and concise!

Run the program and make sure the signup and login Use Cases work.

Currently, you'll notice that the "Log Out" button still doesn't actually log you out. It's time to fix that button, which is part of the LoggedInView. We have created all the classes for you, but some of the code is missing. As a team, your task is to fill in the missing code so that the Logout Use Case is implemented. The next part of the readme describes how your team will do this.


Your team will know when you are done when:

The "Log Out" button is an instance variable in class LoggedInVew. Go find it. Also look at the interface_adapter.change_password.LoggedInViewModel, which contains any data showing on the LoggedInVew.


Task 2: Dividing up the work

There are TODO comments left in the files Recall that you can use the TODO tool window to conveniently pull up a complete list.

Once the TODOs are all complete, the "Log Out" button should work!

As a team, split up the TODOs (see below) between the members of your team.

There are TODOs in seven of the files. Make sure each member has at least one TODO which they will be responsible for completing. If your team prefers to work in pairs, that is fine too. Your individual branches will not be graded for this — only the final, working version.

The TODOs are summarized below (by file) to help your team decide how to split them up:


  1. Make a branch named the first part of your UofT email address, everything before the @. For example, if your email address is paul.gries@mail.utoronto.ca, then the branch name would be paul.gries.

Make sure you switch to the new branch.

In the terminal, this would look like below, but replaced with your own information:

git branch paul.gries
git switch paul.gries
  1. Complete your assigned TODOs and make a pull request on GitHub. In your pull request, briefly describe what your TODOs were and how you implemented them. If you aren't sure about part of it, include this in your pull request so everyone knows what to look for when reviewing — or you can of course discuss with your team before making your pull request since you are physically working in the same space.

    • Important: don't push any changes to the .idea folder, as that may cause issues for your other teammates, as some files contain configurations specific to your individual IntelliJ projects.
  2. Review each other's pull requests to ensure each TODO is correctly implemented and that there are no Checkstyle issues in the files that were modified.

  3. Once all TODOs are completed, your team should debug as needed to ensure the correctness of the code. Setting a breakpoint where the log-out use case interactor starts its work will likely be a great place to start when debugging.

And that's it; you now have a working Logout Use Case! Instructions for how to submit your work on MarkUs will be posted later.

Your team should spend the rest of the lab working on your project blueprint.


Project Blueprint

See Quercus for details about the project blueprint! By the end of the week, the goal is for your team to have a fully drafted blueprint so that your team will be ready to get started on your project after Reading Week.

This is a test I love thes goofy tests