By: Team W16-1
Since: Aug 2018
Licence: MIT
- 1. Introduction
- 2. Setting up
- 3. Design
- 4. Implementation
- 5. Documentation
- 6. Testing
- 7. Dev Ops
- Appendix A: Suggested Programming Tasks to Get Started
- Appendix B: Product Scope
- Appendix C: User Stories
- Appendix D: Use Cases
- Appendix E: Non Functional Requirements
- Appendix F: Glossary
- Appendix G: Instructions for Manual Testing
Hallper is a desktop application aimed at serving the Junior Common Room Committees (JCRCs) of the Halls of NUS. Hallper follows an event-driven architecture, and is designed to work on any mainstream operating system (OS). This guide provides you with information on how to contribute to Hallper, whether you are a new or experienced developer.
This section tells you how to set up your computer before you can start working on Hallper.
-
JDK
9
or later⚠️ JDK 10
on Windows will fail to run tests in headless mode due to a JavaFX bug. Windows developers are highly recommended to use JDK9
. -
IntelliJ IDE
ℹ️IntelliJ by default has Gradle and JavaFx plugins installed.
Do not disable them. If you have disabled them, go toFile
>Settings
>Plugins
to re-enable them.
Follow these steps to set up the project on your computer:
-
Fork this repository, and clone the fork to your computer.
-
Open IntelliJ (If you are not in the welcome screen, click
File
>Close Project
to close the existing project dialog first). -
Set up the correct JDK version for Gradle.
-
Click
Configure
>Project Defaults
>Project Structure
. -
Click
New…
and find the directory of the JDK.
-
-
Click
Import Project
. -
Locate the
build.gradle
file and select it. ClickOK
. -
Click
Open as Project
. -
Click
OK
to accept the default settings. -
Open a console and run the command
gradlew processResources
(Mac/Linux:./gradlew processResources
). It should finish with theBUILD SUCCESSFUL
message.
This will generate all resources required by the application and tests.
Follow these steps to verify the setup:
-
Run the
seedu.address.MainApp
and try a few commands. -
Run the tests to ensure they all pass.
This project follows oss-generic coding standards. IntelliJ’s default style is mostly compliant with ours but it uses a different import order from ours. To rectify:
-
Go to
File
>Settings…
(Windows/Linux), orIntelliJ IDEA
>Preferences…
(macOS). -
Select
Editor
>Code Style
>Java
. -
Click on the
Imports
tab to set the order.-
For
Class count to use import with '*'
andNames count to use static import with '*'
: Set to999
to prevent IntelliJ from contracting the import statements. -
For
Import Layout
: The order isimport static all other imports
,import java.*
,import javax.*
,import org.*
,import com.*
,import all other imports
. Add a<blank line>
between eachimport
.
-
Optionally, you can follow the UsingCheckstyle.adoc document to configure Intellij to check style-compliance as you write code.
After forking the repo, the documentation will still have the SE-EDU branding and refer to the se-edu/addressbook-level4
repo.
If you plan to develop this fork as a separate product (i.e. instead of contributing to se-edu/addressbook-level4
), you should do the following:
-
Configure the site-wide documentation settings in
build.gradle
, such as thesite-name
, to suit your own project. -
Replace the URL in the attribute
repoURL
inDeveloperGuide.adoc
andUserGuide.adoc
with the URL of your fork.
Set up Travis to perform Continuous Integration (CI) for your fork. See UsingTravis.adoc to learn how to set it up.
After setting up Travis, you can optionally set up coverage reporting for your team fork (see UsingCoveralls.adoc).
ℹ️
|
Coverage reporting could be useful for a team repository that hosts the final version but it is not that useful for your personal fork. |
Optionally, you can set up AppVeyor as a second CI (see UsingAppVeyor.adoc).
ℹ️
|
Having both Travis and AppVeyor ensures your App works on both Unix-based platforms and Windows-based platforms (Travis is Unix-based and AppVeyor is Windows-based) |
When you are ready to start coding:
-
Get some sense of the overall design by reading Section 3.1, “Architecture”.
-
Take a look at Appendix A, Suggested Programming Tasks to Get Started.
This section describes the architecture and components of the application.
The Architecture Diagram given above explains the high-level design of the App. Given below is a quick overview of each component:
💡
|
The .pptx files used to create diagrams in this document can be found in the diagrams folder. To update a diagram, modify the diagram in the pptx file, select the objects of the diagram, and choose Save as picture .
|
Main
has only one class called MainApp
. It is responsible for:
-
At app launch: Initialising the components in the correct sequence, and connecting them up with each other.
-
At shut down: Shutting down the components and invoking cleanup method where necessary.
Commons
represents a collection of classes used by multiple other components.
Two of those classes play important roles at the architecture level:
-
EventsCenter
: This class (written using Google’s Event Bus library) is used by components to communicate with other components using events (i.e. a form of Event Driven design). -
LogsCenter
: Used by many classes to write log messages to the App’s log file.
The rest of the App consists of four components:
Each of the four components:
-
Defines its API in an
interface
with the same name as the Component. -
Exposes its functionality using a
{Component Name}Manager
class.
For example, the Logic
component (see the class diagram given below) defines it’s API in the Logic.java
interface and exposes its functionality using the LogicManager.java
class.
The Sequence Diagram below shows how the components interact for the scenario where the user issues the command delete 1
.
ℹ️
|
Note how the Model simply raises a AddressBookChangedEvent when the Address Book data are changed, instead of asking the Storage to save the updates to the hard disk.
|
The diagram below shows how the EventsCenter
reacts to that event, which eventually results in the updates being saved to the hard disk and the status bar of the UI being updated to reflect the 'Last Updated' time.
ℹ️
|
Note how the event is propagated through the EventsCenter to the Storage and UI without Model having to be coupled to either of them. This is an example of how this Event Driven approach helps us reduce direct coupling between components.
|
The sections below give more details of each component.
API : Ui.java
The UI consists of a MainWindow
that is made up of parts e.g.CommandBox
, ResultDisplay
, PersonListPanel
, StatusBarFooter
, BrowserPanel
etc. All these, including the MainWindow
, inherit from the abstract UiPart
class.
The UI
component uses JavaFx UI framework.
The layout of these UI parts are defined in matching .fxml
files that are in the src/main/resources/view
folder.
For example, the layout of the MainWindow
is specified in MainWindow.fxml
.
The UI
component:
-
Executes user commands using the
Logic
component. -
Binds itself to some data in the
Model
so that the UI can auto-update when data in theModel
change. -
Responds to events raised from various parts of the App and updates the UI accordingly.
API :
Logic.java
The Logic
component consists of all the Command
and Parser
classes.
It makes use of AddressBookParser
to parse all user commands.
A typical flow in the Logic
component is given below:
-
Logic
uses theAddressBookParser
class to parse the user command. -
This results in a
Command
object which is executed by theLogicManager
. -
The command execution can affect the
Model
(e.g. adding a person) and/or raise events. -
The result of the command execution is encapsulated as a
CommandResult
object which is passed back to theUI
.
Given below is the Sequence Diagram for interactions within the Logic
component for the execute("delete 1")
API call.
API : Model.java
The Model
component consists of classes that model objects e.g. Person
, Calender
, Email
, etc.
It does not depend on any of the other three components.
The Model
component:
-
stores a
UserPref
object that represents the user’s preferences. -
stores the Address Book data.
-
exposes an unmodifiable
ObservableList<Person>
that can be 'observed' e.g. the UI can be bound to this list so that the UI automatically updates when the data in the list change.
API : Storage.java
The Storage
component consists of classes which are responsible for saving and reading files.
The Storage
component:
-
saves
UserPref
objects in json format and reads it back. -
saves the Address Book data in xml format and reads it back.
-
saves emails in eml format and reads it back.
-
saves calendars in ics format and reads it back.
-
saves the Budget Book data in xml format and reads it back.
This section describes some noteworthy details on how certain features are implemented.
The undo/redo mechanism is facilitated by VersionedAddressBook
.
It extends AddressBook
with an undo/redo history, stored internally as an addressBookStateList
and currentStatePointer
.
Additionally, it implements the following operations:
-
VersionedAddressBook#commit()
— Saves the current address book state in its history. -
VersionedAddressBook#undo()
— Restores the previous address book state from its history. -
VersionedAddressBook#redo()
— Restores a previously undone address book state from its history.
These operations are exposed in the Model
interface as Model#commitAddressBook()
, Model#undoAddressBook()
and Model#redoAddressBook()
respectively.
Given below is an example usage scenario and how the undo/redo mechanism behaves at each step.
Step 1. The user launches the application for the first time. The VersionedAddressBook
will be initialized with the initial address book state, and the currentStatePointer
pointing to that single address book state.
Step 2. The user executes delete 5
command to delete the 5th person in the address book. The delete
command calls Model#commitAddressBook()
, causing the modified state of the address book after the delete 5
command executes to be saved in the addressBookStateList
, and the currentStatePointer
is shifted to the newly inserted address book state.
Step 3. The user executes add n/David …
to add a new person. The add
command also calls Model#commitAddressBook()
, causing another modified address book state to be saved into the addressBookStateList
.
ℹ️
|
If a command fails its execution, it will not call Model#commitAddressBook() , so the address book state will not be saved into the addressBookStateList .
|
Step 4. The user now decides that adding the person was a mistake, and decides to undo that action by executing the undo
command. The undo
command will call Model#undoAddressBook()
, which will shift the currentStatePointer
once to the left, pointing it to the previous address book state, and restores the address book to that state.
ℹ️
|
If the currentStatePointer is at index 0, pointing to the initial address book state, then there are no previous address book states to restore. The undo command uses Model#canUndoAddressBook() to check if this is the case. If so, it will return an error to the user rather than attempting to perform the undo.
|
The following sequence diagram shows how the undo operation works:
The redo
command does the opposite — it calls Model#redoAddressBook()
, which shifts the currentStatePointer
once to the right, pointing to the previously undone state, and restores the address book to that state.
ℹ️
|
If the currentStatePointer is at index addressBookStateList.size() - 1 , pointing to the latest address book state, then there are no undone address book states to restore. The redo command uses Model#canRedoAddressBook() to check if this is the case. If so, it will return an error to the user rather than attempting to perform the redo.
|
Step 5. The user then decides to execute the command list
. Commands that do not modify the address book, such as list
, will usually not call Model#commitAddressBook()
, Model#undoAddressBook()
or Model#redoAddressBook()
. Thus, the addressBookStateList
remains unchanged.
Step 6. The user executes clear
, which calls Model#commitAddressBook()
. Since the currentStatePointer
is not pointing at the end of the addressBookStateList
, all address book states after the currentStatePointer
will be purged. We designed it this way because it no longer makes sense to redo the add n/David …
command. This is the behavior that most modern desktop applications follow.
The following activity diagram summarizes what happens when a user executes a new command:
-
Alternative 1 (current choice): Saves the entire address book.
-
Pros: Easy to implement.
-
Cons: May have performance issues in terms of memory usage.
-
-
Alternative 2: Individual command knows how to undo/redo by itself.
-
Pros: Will use less memory (e.g. for
delete
, just save the person being deleted). -
Cons: Must ensure that the implementation of each individual command are correct.
-
-
Alternative 1 (current choice): Use a list to store the history of address book states.
-
Pros: Easy for new Computer Science student undergraduates to understand, who are likely to be the new incoming developers of our project.
-
Cons: Logic is duplicated twice. For example, when a new command is executed, we must remember to update both
HistoryManager
andVersionedAddressBook
.
-
-
Alternative 2: Use
HistoryManager
for undo/redo-
Pros: Do not need to maintain a separate list, and just reuse what is already in the codebase.
-
Cons: Requires dealing with commands that have already been undone: We must remember to skip these commands. Violates Single Responsibility Principle and Separation of Concerns as
HistoryManager
now needs to do two different things.
-
The Compose email feature works using a third-party dependency, Simple Java Mail.
It allows .eml
files to be saved onto the computer.
The feature is facilitated by EmailModel
and EmailDirStorage
.
It implements the following operations:
-
EmailModel#saveComposedEmail(Email email)
— Stores each newly composed email in theEmailModel
. -
EmailDirStorage#saveEmail(EmailModel email)
— Saves the newly composed email in theEmailModel
to the computer.
These operations are exposed in the Model
interface as Model#saveComposedEmail(Email email)
, and in the Storage
interface as Storage#saveEmail(EmailModel email)
respectively.
Given below is an example usage scenario and how the Compose feature behaves at each step:
Step 1. The user executes either the ComposeEmailList
command or ComposeEmailIndex
command, which creates an email.
The ComposeEmailList
/ComposeEmailIndex
command calls Model#saveComposedEmail(Email email)
, saving the email to EmailModel
.
Step 2. Once the email is saved in the EmailModel
, the ModelManager
raises an EmailSavedEvent
, to indicate that a new
email is saved to the EmailModel
.
Step 3. The EmailSavedEvent
goes to the EventsCenter
, and is then handled by StorageManager#handleEmailSavedEvent
(EmailSavedEvent event)
, which then calls EmailDirStorage#saveEmail(EmailModel email)
.
This saves the email to a specified local directory.
Step 4. A preview of the email is displayed on the main window.
-
Alternative 1 (current choice): Use Simple Java Mail.
-
Pros: Simple Java Mail contains various methods to conveniently create emails. The library is easy to understand so any new developer can easily extend the current features.
-
Cons: The design of created emails is limited to the Simple Java Mail API.
-
-
Alternative 2: Write a custom email builder.
-
Pros: The design of created emails can be freely manipulated.
-
Cons: Much more code has to be written.
-
-
Alternative 1 (current choice): HTML text
-
Pros: Users with HTML knowledge can manipulate the content of the email.
-
Cons: Users unfamiliar with HTML minimally has to learn how the
<br>
tag works.
-
-
Alternative 2: Plain text
-
Pros: Plain text is easily understood by almost any user.
-
Cons: The design of the email content is very limited.
-
The calendar feature in Hallper is implemented using a third-party dependency, iCal4j.
It creates .ics
files and saves them onto the local computer. Calendars in Hallper are created as monthly
calendars, a Map<Year, Set<Month>>
in CalendarModel
keeps a record of existing calendars in Hallper.
It implements the following commands:
-
create_calendar
— Creates a monthly calendar and store it in local memory. -
add_all_day_event
— Adds an all day event into the monthly calendar specified. -
add_event
— Adds an event of a specified time frame into the monthly calendar. -
delete_event
— Deletes an existing event in the monthly calendar.
This command is facilitated by CalendarModel
and IcsCalendarStorage
.
It implements the following operations:
-
CalendarModel#createCalendar(Year year, Month month)
— Initializes a calendar object in theCalendarModel
. -
CalendarModel#isExistingCalendar(Year year, Month month)
— Checks if the calendar already exists in Hallper. -
IcsCalendarStorage#createCalendar(Calendar calendar, String calendarName)
— Saves the calendar passed fromCalendarModel
to the computer.
These operations are exposed in the 'Model` interface as Model#createCalendar(Year year, Month month)
, Model#isExistingCalendar(Year year, Month month)
and in the Storage
interface as Storage#createCalendar(Calendar calendar, String calendarName)
respectively.
Given below is an example usage scenario and how the create_calendar
command behaves at each step:
-
The user executes the
create_calendar
command by specifying the month and year. Thecreate_calendar
command then callsModel#isExistingCalendar(Year year, Month month)
, to check whether the calendar already exists inside Hallper. If it exists, the command does nothing and reflects to the user that the calendar already exists. Else, the command callsModel#createCalendar(Year year, Month month)
, initializing a calendar object insideCalendarModel
. -
Once the calendar object is initialized in the
CalendarModel
, theModelManager
raises aCalendarCreatedEvent
, to indicate that a calendar object has been initialized in theCalendarModel
. -
The
CalendarCreatedEvent
goes to theEventsCenter
, and is then handled byStorageManager#handleCalendarCreatedEvent(CalendarCreatedEvent event)
, which then callsIcsCalendarStorage#createCalendar(Calendar calendar, String calendarName)
. This saves the calendar to a specified local directory.
The add_all_day_event
and add_event
command have many similarities, they differ only by their parameters and the number of checks called to verify the validity of the event to be added. Events in Hallper are created as VEvent objects as implemented in the iCal4j library.
Both commands are facilitated by CalendarModel
and IcsCalendarStorage
. It implements the following operations:
-
CalendarModel#createAllDayEvent(Year year, Month month, int date, String title)
— Creates an all day event object and saves it inside the loaded calendar inCalendarModel
. -
CalendarModel#createEvent(Year year, Month month, int startDate, int startHour, int startMin, int endDate, int endHour, int endMin, String title)
— Creates an event object with the specified time frame and saves it inside the loaded calendar inCalendarModel
. -
CalendarModel#loadCalendar(Year year, Month month)
— Loads the monthly calendar specified intoCalendarModel
. -
CalendarModel#isExistingCalendar(Year year, Month month)
— Checks if the calendar already exists in Hallper. -
CalendarModel#isValidDate(Year year, Month month, int date)
— Checks if the date is a valid date in accordance to the Gregorian calendar. -
CalendarModel#isValidTime(int hour, int min)
— Checks if the hour and minutes are valid in accordance to the 24 hour format. -
CalendarModel#isValidTimeFrame(int startDate, int startHour, int startMin, int endDate, int endHour, int endMin)
— Checks that the end date and time doesn’t occur before the start date and time. -
IcsCalendarStorage#loadCalendar(String calendarName)
— Loads the specified calendar from the local directory into local memory. -
IcsCalendarStorage#createCalendar(Calendar calendar, String calendarName)
— Saves the calendar passed fromCalendarModel
to the local directory.
These operations are exposed in the Model
and Storage
interface as :
-
Model#createAllDayEvent(Year year, Month month, int date, String title)
-
Model#createEvent(Year year, Month month, int startDate, int startHour, int startMin, int endDate, int endHour, int endMin, String title)
-
Model#loadCalendar(Year year, Month month)
-
Model#isExistingCalendar(Year year, Month month)
-
Model#isValidDate(Year year, Month month, int date)
-
Model#isValidTime(int hour, int min)
-
Model#isValidTimeFrame(int startDate, int startHour, int startMin, int endDate, int endHour, int endMin)
-
Storage#loadCalendar(String calendarName)
-
Storage#createCalendar(Calendar calendar, String calendarName)
Given below is an example usage scenario and how the add_all_day_event
command behaves at each step:
-
The user executes the
add_all_day_event
command by specifying the month, year, date and title. Theadd_all_day_event
command then callsModel#isExistingCalendar(Year year, Month month)
,Model#isValidDate(Year year, Month month, int date)
, to perform checks on whether the request to create event is valid. If it fails any one of the checks, the command does nothing and reflects to the user that the request to create event is not valid. Else, the command callsModel#createAllDayEvent(Year year, Month month, int date, String title)
, which callsCalendarModel#createAllDayEvent(Year year, Month month, int date, String title)
. -
CalendarModel
first callsCalendarModel#loadCalendar(Year year, Month month)
to load the calendar intoCalendarModel
. -
Once the calendar object is loaded in the
CalendarModel
, it creates an event object and loads it with all the relevant information. -
The
ModelManager
then raises aAllDayEventAddedEvent
, to indicate an all day event has been created in theCalendarModel
. -
The
AllDayEventAddedEvent
goes to theEventsCenter
, and is then handled byStorageManager#handleAllDayEventAddedEvent(AllDayEventAddedEvent event)
, which then callsIcsCalendarStorage#createCalendar(Calendar calendar, String calendarName)
. This saves the updated calendar back to the local directory.
Given below is an example usage scenario and how the add_event
command behaves at each step:
-
The user executes the
add_event
command by specifying the month, year, starting date, starting time, ending date, ending time and title. Theadd_event
command then callsModel#isExistingCalendar(Year year, Month month)
,Model#isValidDate(Year year, Month month, int date)
,Model#isValidTime(int hour, int min)
andModel#isValidTimeFrame(int startDate, int startHour, int startMin, int endDate, int endHour, int endMin)
to perform checks on whether the request to create event is valid. If it fails any one of the checks, the command does nothing and reflects to the user that the request to create event is not valid. Else, the command callsModel#createEvent(Year year, Month month, int startDate, int startHour, int startMin, int endDate, int endHour, int endMin, String title)
, which callsCalendarModel#loadCalendar(Year year, Month month)
. -
CalendarModel
first callsCalendarModel#loadCalendar(Year year, Month month)
to load the calendar intoCalendarModel
. -
Once the calendar object is loaded in the
CalendarModel
, it creates an event object and loads it with all the relevant information. -
The
ModelManager
then raises aCalendarEventAddedEvent
, to indicate an event with a specified time frame has been created in theCalendarModel
. -
The
CalendarEventAddedEvent
goes to theEventsCenter
, and is then handled byStorageManager#handleCalendarEventAddedEvent(CalendarEventAddedEvent event)
, which then callsIcsCalendarStorage#createCalendar(Calendar calendar, String calendarName)
. This saves the updated calendar back to the local directory.
This command is facilitated by CalendarModel
and IcsCalendarStorage
.
It implements the following operations:
-
CalendarModel#loadCalendar(Year year, Month month)
— Loads the monthly calendar specified intoCalendarModel
. -
CalendarModel#deleteEvent(Year year, Month month)
— Deletes an existing event in the monthly calendar. -
CalendarModel#retrieveEvent(int startDate, int endDate, String title)
— Retrieves the event object from the calendar. -
CalendarModel#isSameEvent(int startDate, int endDate, String title, VEvent event)
— Checks whether the requested event to be deleted is the same event object in the calendar. -
CalendarModel#isExistingCalendar(Year year, Month month)
— Checks if the calendar already exists in Hallper. -
CalendarModel#isValidDate(Year year, Month month, int date)
— Checks if the date is a valid date in accordance to the Gregorian calendar. -
CalendarModel#isExistingEvent(Year year, Month month, int startDate, int endDate, String title)
— Checks if an event exists in the monthly calendar. -
IcsCalendarStorage#loadCalendar(String calendarName)
— Loads the specified calendar from the local directory into local memory. -
IcsCalendarStorage#createCalendar(Calendar calendar, String calendarName)
— Saves the calendar passed fromCalendarModel
to the local directory.
These operations are exposed in the Model
and Storage
interface as :
-
Model#loadCalendar(Year year, Month month)
-
Model#deleteEvent(Year year, Month month, int startDate, int endDate, String title)
-
Model#isExistingCalendar(Year year, Month month)
-
Model#isValidDate(Year year, Month month, int date)
-
Model#isExistingEvent(Year year, Month month, int startDate, int endDate, String title)
-
Storage#loadCalendar(String calendarName)
-
Storage#createCalendar(Calendar calendar, String calendarName)
Given below is an example usage scenario and how the delete_event
command behaves at each step:
-
The user executes the
delete_event
command by specifying the month, year, starting date, ending date, and title. Thedelete_event
command then callsModel#isExistingCalendar(Year year, Month month)
,Model#isValidDate(Year year, Month month, int date)
andModel#isExistingEvent(Year year, Month month, int startDate, int endDate, String title)
to perform checks on whether the request to delete event is valid. If it fails any one of the checks, the command does nothing and reflects to the user that the request to delete event is not valid. Else, theModel#isExistingEvent
check will retrieve the event and load it inside theCalendarModel
. It then callsModel#deleteEvent(Year year, Month month, int startDate, int endDate, String title)
. -
The
Model#isExistingEvent
check first callsCalendarModel#loadCalendar(Year year, Month month)
to load the calendar intoCalendarModel
. Once the calendar object is loaded in theCalendarModel
, it then callsCalendarModel#retrieveEvent(int startDate, int endDate, String title)
to retrieve the event and store it inside theCalendarModel
as event to be deleted. -
The call to
Model#deleteEvent(Year year, Month month, int startDate, int endDate, String title)
callsCalendarModel#deleteEvent(Year year, Month month)
which removes the event to be deleted inCalendarModel
from the monthly calendar. -
The
ModelManager
then raises aCalendarEventDeletedEvent
, to indicate an event has been deleted in theCalendarModel
. -
The
CalendarEventDeletedEvent
goes to theEventsCenter
, and is then handled byStorageManager#handleCalendarEventDeletedEvent(CalendarEventDeletedEvent event)
, which then callsIcsCalendarStorage#createCalendar(Calendar calendar, String calendarName)
. This saves the updated calendar back to the local directory.
-
Pro: The
.ics
file format is compliant with the RFC 5545 format, which is industry recognised, and can be opened and viewed using many applications, including Microsoft Outlook, Google Calendar, and Apple Calendar. -
Con:
.ics
file alone is not very useful. User needs to import the events created into users' preferred calender application manually and consistently. More implementations will be required to make.ics
files useful in Hallper.
The budget feature in Hallper is implemented with reference to AddressBook
. It stores Cca
instead of Person
, and
each Cca
contains the a Budget
and a set of transaction Entries
. The budget feature is facilitated by
BudgetBook
and BudgetBookStorage
, and can also read and write onto the ccabook.xml
, just like the AddressBook.
The purpose of this budget feature is to keep track of each Cca
transaction.
It implements the following commands:
-
create
— Creates a CCA with a given budget. -
delete_cca
— Deletes a specified CCA. -
update
— Updates the details of a specified CCA. -
add_trans
— Adds a transaction entry to a specified CCA. -
delete_trans
— Deletes a transaction entry to a specified CCA. -
budget
— Shows the transaction information of each CCA.
However, only the implementation of create
, update
, add_trans
and budget
will be discussed.
The create
mechanism is facilitated by BudgetBook
and BudgetBookStorage
.
When a CCA is created, it is stored in a UniqueCcaList
in the BudgetBook
, and in a .xml
file in the local
directory. It implements the following command:
-
BudgetBook#addCca(Cca toAdd)
— Adds a non existing CCA into theBudgetBook
inModel
. -
BudgetBook#commitBudgetBook()
— Save a current version of the budget book in theVersionedBudgetBook
.
These operations are exposed in the Model
interface as:
-
Model#addCca(Cca cca)
-
Model#hasCca(CcaName name)
-
Model#hasCca(Cca cca)
-
Model#commitBudgetBook()
Given below is an example usage scenario and how the create cca mechanism behaves at each step.
Step 1. The user creates a new CCA by including the CCA name
and the budget
allocated to the CCA.
Step 2. create
command checks for existing CCA name using BudgetBook#hasCca(Cca toAdd)
. If a CCA with the same
name exists, the CCA is not created. Otherwise, it is added into the BudgetBook
in the Model
.
Step 3. BudgetBook#addCca(Cca cca)
then invokes ModelManger#indicateBudgetBookChange()
to raise a
BudgetBookChangedEvent
, which is handled by EventsCenter
.
Step 4. BudgetBookChangedEvent
is then handled by StorageManager#handleBudgetBookChangedEvent(BudgetBookChangedEvent
event)
. StorageManager#saveBudgetBook(ReadOnlyBudgetBook data)
is then called to update the existing
ccabook.xml
file with the new CCA.
The following sequence diagram shows how the create operation works:
Figure 4.4.1.1: Sequence diagram for create command
The update
mechanism is facilitated by BudgetBook
and BudgetBookStorage
.
When a CCA is getting updated, it looks up the BudgetBook
in the BudgetBookStorage
of the Model
for the CCA to
update. It then updates the Cca
stored inside the ccabook.xml
file in the local directory.
It implements the following commands:
-
BudgetBook#updateCca(Cca targetCca, Cca editedCca)
— Updates an existing CCA in theBudgetBook
inModel
. -
BudgetBook#commitBudgetBook()
— Saves a current version of the budget book in theVersionedBudgetBook
. -
UpdateCommand#createEditedCca(Cca ccaToEdit, EditCcaDescriptor editCcaDescriptor)
— Creates an updated version of the target CCA. -
TransactionMath#updateDetails(Cca cca)
— Updates theSpent
andOutstanding
amount of the specified CCA.
These operations are exposed in the Model
interface as:
-
Model#updateCca(Cca targetCca, Cca editedCca)
-
Model#hasCca(CcaName cca)
-
Model#commitBudgetBook()
-
Model#hasPerson(Name person)
Given below is an example usage scenario and how the update cca mechanism behaves at each step:
Step 1. The user specifies the CCA to be updated by including the CCA name and the fields to update.
Step 2. The user can update the head’s name, the vice-head’s name, the budget allocated, and the details of a
transaction entry such as its date, amount involved and remarks for the transaction. These information is stored in the
UpdateCommand#EditCcaDescriptor
. Any fields that are not valid will display an error message.
Step 3. update
command then checks for existing CCA name using BudgetBook#hasCca(CcaName ccaName)
. If the cca name
does not exist, an error message will appear. Otherwise, the updated CCA will be created from the
UpdateCommand#EditCcaDescriptor
using
UpdateCommand#createEditedCca(Cca ccaToEdit, EditCcaDescriptor editCcaDescriptor)
.
Step 4. BudgetBook#updateCca(Cca targetCca, Cca editedCca)
then replaces the existing CCA with the updated CCA and
invokes ModelManger#indicateBudgetBookChange()
to raise a BudgetBookChangedEvent
, which is handled by
EventsCenter
.
Step 5. BudgetBookChangedEvent
is handled by StorageManager#handleBudgetBookChangedEvent(BudgetBookChangedEvent
event)
. StorageManager#saveBudgetBook(ReadOnlyBudgetBook data)
is then called to replace the specified CCA in the
the existing ccabook.xml
with the updated CCA and its information.
The following sequence diagram shows how the update operation works:
Figure 4.4.1.2: Sequence diagram for update command
The add_trans
mechanism is facilitated by BudgetBook
and BudgetBookStorage
.
When a transaction entry is to be added, it looks up the BudgetBook
in the BudgetBookStorage
of
the Model
for the CCA and add the specified entry to the CCA. It then update the Cca
stored inside the ccabook.xml
file in the
local directory.
It implements the following commands:
-
BudgetBook#updateCca(Cca targetCca, Cca editedCca)
— Updates an existing CCA in theBudgetBook
inModel
. -
BudgetBook#commitBudgetBook()
— Saves a current version of the budget book in theVersionedBudgetBook
. -
TransactionMath#updateDetails(Cca cca)
— Updates theSpent
andOutstanding
amount of the specified CCA.
These operations are exposed in the Model
interface as:
-
Model#updateCca(Cca targetCca, Cca editedCca)
-
Model#hasCca(CcaName cca)
-
Model#commitBudgetBook()
Given below is an example usage scenario and how the add transaction mechanism behaves at each step:
Step 1. The user specifies the CCA to add transaction to by including the CCA name and the transaction fields.
Step 2. The user must include the Date
, Amount
and Remarks
for the transaction entry. Any fields that are not
valid will display an error message.
Step 3. add_trans
command then checks for existing CCA name using BudgetBook#hasCca(CcaName ccaName)
. If the
cca name does not exist, an error message will appear. Otherwise, the Entry
is created and is added to the
target Cca
using Cca#AddNewTransaction(Entry entry)
.
Step 4. The Spent
and Outstanding
is then updated using TransactionMath#updateDetails(Cca cca)
.
Step 5. BudgetBook#updateCca(Cca targetCca, Cca editedCca)
then replaces the existing CCA with the updated CCA and
invokes ModelManger#indicateBudgetBookChange()
to raise a BudgetBookChangedEvent
, which is handled by
EventsCenter
.
Step 6. BudgetBookChangedEvent
is handled by StorageManager#handleBudgetBookChangedEvent(BudgetBookChangedEvent
event)
. StorageManager#saveBudgetBook(ReadOnlyBudgetBook data)
is then called to replace the specified CCA in the
the existing ccabook.xml
with the updated CCA and its transaction entry.
The following sequence diagram shows how the add transaction operation works:
_Figure 4.4.1.3: Sequence diagram for add_trans command
The budget
mechanism is facilitated by BudgetBook
and BudgetBookStorage
.
It opens up a separate window to display the CCA information and its transaction history. It implements the
following command:
-
`EventsCenter#getInstance() — Gets the instance of the EventsCenter.
-
`EventsCenter#post(E event) — Posts an event to the event bus.
Given below is an example usage scenario and how the budget mechanism behaves at each step.
Step 1. The user enters the budget command with or without a specified CCA.
Step 2. When a CCA is specified, BudgetCommand(CcaName ccaName)
is called. Otherwise, BudgetCommand()
is called
and the CcaName
is null.
Step 3. If the CCA is specified, the budget
command checks whether the CCA specified exist.
Step 4. budget
command then raises a ShowBudgetViewEvent
, which is handled by EventsCenter
.
Step 5. ShowBudgetViewEvent
is handled by MainWindow#handleShowBudgetEvent(ShowBudgetViewEvent event)
and invokes
MainWindow#handleBudget(CcaName ccaName)
. This opens the budget window through BudgetWindow#show(CcaName ccaName)
.
Step 6. It then checks whether the CCA name is present in BudgetWindow#fillInnerParts(CcaName ccaName)
. If CCA name
is present, BudgetBrowserPanel(ccaName)
is called and the specified CCA information will be displayed. Otherwise,
BudgetBrowserPanel()
is called, showing a blank page.
The following activity diagram summarizes what happens when a user executes a budget command:
_Figure 4.4.1.4: Activity diagram for budget command
-
Alternative 1 (current choice): Saves in
.xml
format.-
Pros: Easy to create, understand, move and translate into other environments. International data standard for storing information.
-
Cons: Parsing XML software is slow and cumbersome. Use large amounts of memory due to the verbosity and incur cost of parsing large XML files.
-
-
Alternative 2: Save in
.json
format.-
Pros: Faster in parsing information.
-
Cons: Limited in terms of what objects can be modeled.
-
The clear feature allows the user to clear persons associated with specified keywords from the database.
It implements the following operations:
* ClearCommand#clearAll(Model model)
— Clears the entire database.
* ClearCommand#clearSpecific(Model model)
— Clears persons associated with specified keywords.
These operations are exposed in the Model
interface as Model#commitAddressBook
, Model#resetData()
and
Model#clearMultiplePersons(List<Person> target)
.
Given below is an example usage scenario and how the clear mechanism behaves at each step:
Step 1: The user specifies CCA(s) and/or room(s) of persons to be cleared from the database.
Step 2: ClearCommandParser
checks for the validity of the CCA(s) and/or room(s) specified. If non-existent argument(s) specified,
a CommandException
will be thrown. A combination of existing and non-existent arguments specified will be successfully parsed.
Step 3: ClearCommand#execute(Model model, CommandHistory history)
is then called and invokes ClearCommand#clearSpecific(Model model)
,
which uses the specified arguments to create a persons list containing associated persons to be cleared.
ModelManager#clearMultiplePersons(List<Person> target)
is then invoked to clear the internal list of persons in target.
Step 4: After the internal list is cleared, ModelManager#clearMultiplePersons(List<Person> target)
then invokes ModelManager#indicateAddressBookChanged()
, which raises an AddressBookChangedEvent
which is handled by
EventsCenter
.
Step 5: AddressBookChangedEvent
is then handled by
StorageManager#handleAddressBookChangedEvent(AddressBookChangedEvent event)
.
StorageManager#saveAddressBook(ReadOnlyAddressBook data)
is then called to update the existing addressbook.xml
file
with the cleared persons list.
The following sequence diagram shows how the clear operation works:
Figure 4.5.1.1: Sequence diagram of clear command on specified keywords.
The following activity diagram summarizes what happens when a user executes the clear command:
Figure 4.5.1.2: Activity diagram showing different path flows of clear command.
-
Alternative 1 (current choice): Clear command is merged.
-
Pros: Due to the similar function of clearing persons from the database, merging them under a single command makes it easier for the user to remember and produce the command input. Clearing of the entire database is also rarely executed so it makes logical sense to merge these commands.
-
Cons: The user will not be able to use
all
as a CCA as it is a reserved keyword to clear the entire database.
-
-
Alternative 2: Clear commands are separated.
-
Pros: The user can clearly distinguish between the two features by renaming them with different command inputs.
-
Cons: There is no need for a separate command for clearing the entire database as it is a rarely used feature.
-
The erase feature allows the user to erase specified CCAs from persons associated with the CCAs in the database.
It implements the following operation:
-
EraseCommand#execute(Model model, CommandHistory history)
— Executes the erasure of CCAs from persons in the database.
This operation is exposed in the Model
interface as Model#commitAddressBook()
and
Model#removeTagsFromPersons(ArrayList<Person> target, ArrayList<Person> original)
.
Given below is an example usage scenario and how the erase mechanism behaves at each step:
Step 1: The user specifies CCA(s) to be erased from the database.
Step 2: EraseCommandParser
checks for the validity of the CCA(s) specified. If non-existent CCA(s) specified,
a CommandException
will be thrown. A combination of existing and non-existent CCAs specified will be successfully parsed.
Step 3: EraseCommand#execute(Model model, CommandHistory history)
is then called and uses the specified CCA arguments
to create a new persons list with specified CCAs erased from associated persons.
ModelManager#removeTagsFromPersons(List<Person> editedPersons, List<Person> targets)
is then invoked to update
the internal list with the new persons list.
Step 4: After the internal list is updated, ModelManager#removeTagsFromPersons(List<Person> editedPersons, List<Person> targets)
then invokes ModelManager#indicateAddressBookChanged()
, which raises an AddressBookChangedEvent
which is handled by
EventsCenter
.
Step 5: AddressBookChangedEvent
is then handled by
StorageManager#handleAddressBookChangedEvent(AddressBookChangedEvent event)
.
StorageManager#saveAddressBook(ReadOnlyAddressBook data)
is then called to update the existing addressbook.xml
file
with the new persons list.
The following sequence diagram shows how the erase operation works:
Figure 4.6.1.1: Sequence diagram of erase command on specified keywords.
The following activity diagram summarizes what happens when a user executes the erase command:
Figure 4.6.1.2: Activity diagram showing different path flows of erase command.
-
Alternative 1 (current choice): Loop through current internal list to extract associated persons.
-
Pros: The implementation of the extraction algorithm is straightforward and will not miss out any persons.
-
Cons: The execution time will be slow for large quantity of persons in the internal list.
-
-
Alternative 2: Store persons in a multilayer linked list data structure.
-
Pros: The number of CCAs are fewer than the number of persons in the database, so it would be faster to search for the target CCAs in the first layer of the linked list and obtain the entire second layer list of persons associated with the CCA.
-
Cons: The implementation is rather complicated and requires other commands such as add, edit and delete to be modified as well. More space would be needed on the computer to store the multilayer linked list other than the actual
addressbook.xml
file.
-
The import feature allows .xml
files of different formats to be imported from the computer.
It implements the following operations and classes:
-
ImportCommand#parseFile()
— Parses specified path into document for reading. -
ImportAddressBook#execute(Document doc, Model model)
— Imports.xml
file from the specified path to update Hallper data. -
ImportCcaList#execute(Document doc, Model model)
— Imports.xml
file from the specified path to update Hallper contacts' CCAs.
These operations are exposed in the Model
interface as Model#commitAddressBook()
, Model#addMultiplePersons()
and Model#updateMultiplePersons
.
Given below is an example usage scenario and how the import mechanism behaves at each step.
Step 1: The user imports .xml
file by specifying the path of the file.
Step 2: ImportCommandParser
checks for the validity of the path and .xml
file format. If .xml
file has an invalid
format, the specified file will not be imported.
Step 3: ImportCommand#parseFile()
then prepares the file for reading by parsing into a document.
Step 4: ImportCommand#execute(Model model, CommandHistory history)
then invokes ImportAddressBook#execute(Document doc,
Model model)
to read the document.
Step 5: After the document data is read, ImportAddressBook#execute(Document doc, Model model)
then invokes
ModelManager#addMultiplePersons(List<Person> personList)
to update Hallper’s internal list and
ModelManager#indicateAddressBookChanged()
, which raises an AddressBookChangedEvent
which is handled by
EventsCenter
.
Step 6: AddressBookChangedEvent
is then handled by
StorageManager#handleAddressBookChangedEvent(AddressBookChangedEvent event)
.
StorageManager#saveAddressBook(ReadOnlyAddressBook data)
is then called to update the existing addressbook.xml
file
with the new contacts.
The following sequence diagram shows how the import operation works:
Figure 4.7.1.1: Sequence diagram of import command.
The following activity diagram summarizes what happens when a user executes the import command:
Figure 4.7.1.2: Activity diagram showing different path flows of import command.
-
Alternative 1 (current choice): Reads file in
Logic
.-
Pros: Easy to change parsing of
.xml
file when.xml
file format changes. New.xml
file formats can be added without disrupting the existing parsers. -
Cons: Importing from the computer is a storage-related feature but the reading of the file is located outside of Storage component.
-
-
Alternative 2: Reads file in
Storage
.-
Pros: Proper grouping of import implementation inside related component.
-
Cons: More complicated implementation if more
.xml
file formats are added to be parsed in the future.
-
The export feature allows Hallper data to be exported as an xml
file to the computer.
It implements the following operation:
-
ExportCommand#execute(Model model, CommandHistory history)
— Exports current Hallper data as anxml
file to the specified path.
This operation is exposed in the Model
interface as Model#exportAddressBook(Path filePath)
.
Given below is an example usage scenario and how the export mechanism behaves at each step.
Step 1: The user exports an 'xml' file by specifying the destination path and name of the exported file.
Step 2: ExportCommandParser
checks for the validity of the path and file name. If path or file name are invalid, Hallper
data will not be exported. Otherwise, path and filename will be parsed into a single, full path.
Step 3: ExportCommand#execute(Model model, CommandHistory history)
then invokes
ModelManager#exportAddressBook(Path filePath)
which raises an ExportAddressBookEvent
.
Step 4: ExportAddressBookEvent
is then handled by
StorageManager#handleExportAddressBookEvent(ExportAddressBookEvent event)
.
StorageManager#exportAddressBook(ReadOnlyAddressBook addressBook, Path path)
is then called to export Hallper’s
storage data to the specified path.
The following sequence diagram shows how the export operation works:
Figure 4.8.1.1: Sequence diagram of export command.
The following activity diagram summarizes what happens when a user executes the export command:
Figure 4.8.1.2: Activity diagram showing different path flows of export command.
-
Alternative 1 (current choice): Export
.xml
format only.-
Pros: Easy for user to update and re-import the
.xml
file. Standardised format for Hallper-related data files. -
Cons: Difficult to convert/transfer data to other applications due to limited export format. Need to use external applications to convert
.xml
file.
-
-
Alternative 2: Export
.xml
,.txt
and.xlsx
formats.-
Pros: More options for user to export Hallper data. Exported files can be read across different applications.
-
Cons: Unused file formats.
.xml
is the format that is mainly used by Hallper so.txt
and.xlsx
may be underused or unused.
-
The image feature allows .jpg
image files to be uploaded into Hallper to a specific person from the computer.
The feature is facilitated by ProfilePictureDirStorage
. It implements the follow operations:
-
ProfilePictureDirStorage#readProfilePicture(File file)
— Reads the file that is specified by the user through a path and returns a copy of the image that is being read. -
ProfilePictureDirStorage#saveProfilePicture(BufferedImage image, Room number)
— Saves the copied image into the computer.
Both operations are exposed in the Storage
interface as Storage#readProfilePicture(File file)
and
Storage#saveProfilePicture(BufferedImage image, Room number)
respectively.
Given below is an example usage scenario and how the image mechanism behaves at each step:
Step 1. The user specifies the file path of the .jpg
image to be uploaded and the person’s room number.
Step 2. ImageCommandParser
passes the room number and file that is specified by the file path to ImageCommand
.
Step 3. ImageCommand
searches Hallper for the person that is tagged with the specified room number. It returns an
error message if the room number specified is not tagged to any person.
Step 4. Once the room number is verified, a NewImageEvent
is raised from the ImageCommand
to initiate the reading
and copying of the image from the given file path.
Step 5. The NewImageEvent
goes to the EventCenter
, and is then handled by
StorageManager#handleNewImageEvent(NewImageEvent event)
. ProfilePictureStorage#readProfilePicture(File file)
is
then called to read the image file. After reading a valid image file, the
ProfilePictureStorage#saveProfilePicture(BufferedImage image, Room number)
is called to save the image into the
computer.
Step 6. Hallper then updates the person’s profile picture field with the name of the copied image.
The following sequence diagram shows how the image operation works:
Figure 4.7.1.1: Sequence diagram for image operation
The following activity diagram summarizes what happens when a user executes the image command:
Figure 4.7.1.2: Activity diagram for image operation
-
Alternative 1 (current choice): Read and save image file through
Storage
.-
Pro: Reading and saving files through
Storage
follows the architecture that the project is built upon. -
Con: Informing the user of invalid file path is much more complicated.
-
-
Alternative 2: Read and save image file through
ImageCommand
.-
Pro: Informing the user of invalid file path will be similar to when an invalid command is given.
-
Con: Reading and saving the image file from
ImageCommand
breaks the architecture of the project.
-
-
Alternative 1 (current choice): Only
.jpg
image files.-
Pro: Copying the image will be easier since all images saved will be in the form of
.jpg
. -
Con: Limiting users to only being able to upload one type of image file.
-
-
Alternative 2: Allow for multiple image file types i.e
.jpg
,.png
.-
Pro: Increasing the valid image file types allows users to have more choices when choosing the picture to upload.
-
Con: Copying of the image will be more complicated since all images will be saved as a
.jpg
image file type.
-
The search feature allows the user to search for persons who in Hallper using their room number, school and CCAs.
It implements the following operation:
-
SearchCommand#execute(Model model, CommandHistory history)
— Updates the filtered persons list with persons that has fields that match any of the predicates.
This operation is exposed in the Model
interface as Model#updateFilteredPersonList(Predicate<Person> predicate)
.
Given below is an example usage scenario and how the search mechanism behaves at each step.
Step 1. The user specifies the keywords to search Hallper with.
Step 2. SearchCommandParser
checks for the keywords after the search command word. If there are no keywords
after the search command word, a ParseException
is thrown. Any keywords that comes after the search command word
will be successfully parsed into a FieldsContainsKeywordsPredicate
Step 3. SearchCommand#execute(Model model, CommandHistory history)
is then called and uses the predicate to update
the filtered persons list.
Step 4. After updating the list, the PersonListPanel
is then updated to display the search result.
The following sequence diagram shows how the search operation works:
Figure 4.10.1.1: Sequence diagram for search operation
The following activity diagram summarizes what happens when a user executes the search command:
Figure 4.10.1.2: Activity diagram for search operation
-
Alternative 1 (current choice): Limit choice to only room number, school and CCA.
-
Pro: The search command will only search for the fields that are the most commonly used.
-
Con: The fields that can be used as keywords are limited.
-
-
Alternative 2: Include all available fields to be the search criteria.
-
Pro: Allows the command to search using more criteria.
-
Con: Including name as a search criteria will overlap with the current find command and phone numbers are not commonly used as search criterias.
-
java.util.logging
package is used for logging. The LogsCenter
class is used to manage the logging levels and
logging destinations.
-
Logging level can be controlled using the
logLevel
setting in the configuration file (See Section 4.13, “Configuration”) -
The
Logger
for a class can be obtained usingLogsCenter.getLogger(Class)
which will log messages according to the specified logging level -
Current log messages are output through:
Console
and to a.log
file.
Logging Levels
-
SEVERE
: Detect critical problem which may possibly cause the termination of the application. -
WARNING
: Able to continue, but with caution. -
INFO
: Show information on the noteworthy actions by the App. -
FINE
: Display eetails that is not usually noteworthy but may be useful in debugging e.g. print the actual list instead of just its size.
We use asciidoc for writing documentation.
ℹ️
|
We chose asciidoc over Markdown because asciidoc, although a bit more complex than Markdown, provides more flexibility in formatting. |
See UsingGradle.adoc to learn how to render .adoc
files locally to preview the end result of your edits.
Alternatively, you can download the AsciiDoc plugin for IntelliJ, which allows you to preview the changes you have made to your .adoc
files in real-time.
See UsingTravis.adoc to learn how to deploy GitHub Pages using Travis.
We use Google Chrome for converting documentation to PDF format, as Chrome’s PDF engine preserves hyperlinks used in webpages.
Here are the steps to convert the project documentation files to PDF format.
-
Follow the instructions in UsingGradle.adoc to convert the AsciiDoc files in the
docs/
directory to HTML format. -
Go to your generated HTML files in the
build/docs
folder, right click on them and selectOpen with
→Google Chrome
. -
Within Chrome, click on the
Print
option in Chrome’s menu. -
Set the destination to
Save as PDF
, then clickSave
to save a copy of the file in PDF format. For best results, use the settings indicated in the screenshot below.
The build.gradle
file specifies some project-specific asciidoc attributes which affects how all documentation files within this project are rendered.
💡
|
Attributes left unset in the build.gradle file will use their default value, if any.
|
Attribute name | Description | Default value |
---|---|---|
|
The name of the website. If set, the name will be displayed near the top of the page. |
not set |
|
URL to the site’s repository on GitHub. Setting this will add a "View on GitHub" link in the navigation bar. |
not set |
|
Define this attribute if the project is an official SE-EDU project. This will render the SE-EDU navigation bar at the top of the page, and add some SE-EDU-specific navigation items. |
not set |
Each .adoc
file may also specify some file-specific asciidoc attributes which affects how the file is rendered.
Asciidoctor’s built-in attributes may be specified and used as well.
💡
|
Attributes left unset in .adoc files will use their default value, if any.
|
Attribute name | Description | Default value |
---|---|---|
|
Site section that the document belongs to.
This will cause the associated item in the navigation bar to be highlighted.
One of: * Official SE-EDU projects only |
not set |
|
Set this attribute to remove the site navigation bar. |
not set |
The files in docs/stylesheets
are the CSS stylesheets of the site.
You can modify them to change some properties of the site’s design.
The files in docs/templates
controls the rendering of .adoc
files into HTML5.
These template files are written in a mixture of Ruby and Slim.
|
Modifying the template files in |
Testing is a crucial part of developing your application. Testing allows you to verify the correctness and usability of your app, before releasing it to users.
There are three ways to run tests.
💡
|
The most reliable way to run tests is the 3rd one. The first two methods might fail some GUI tests due to platform/resolution-specific idiosyncrasies. |
Method 1: Using IntelliJ JUnit test runner
-
To run all tests, right-click on the
src/test/java
folder and chooseRun 'All Tests'
-
To run a subset of tests, you can right-click on a test package, test class, or a test and choose
Run 'ABC'
Method 2: Using Gradle
-
Open a console and run the command
gradlew clean allTests
(Mac/Linux:./gradlew clean allTests
)
ℹ️
|
See UsingGradle.adoc for more info on how to run tests using Gradle. |
Method 3: Using Gradle (headless)
Thanks to the TestFX library we use, our GUI tests can be run in the headless mode. In the headless mode, GUI tests do not show up on the screen. That means the developer can do other things on the Computer while the tests are running.
To run tests in headless mode, open a console and run the command gradlew clean headless allTests
(Mac/Linux: ./gradlew clean headless allTests
)
We have two types of tests:
-
GUI Tests - These are tests involving the GUI. They include,
-
System Tests that test the entire App by simulating user actions on the GUI. These are in the
systemtests
package. -
Unit tests that test the individual components. These are in
seedu.address.ui
package.
-
-
Non-GUI Tests - These are tests not involving the GUI. They include,
-
Unit tests targeting the lowest level methods/classes.
e.g.seedu.address.commons.StringUtilTest
-
Integration tests that are checking the integration of multiple code units (those code units are assumed to be working).
e.g.seedu.address.storage.StorageManagerTest
-
Hybrids of unit and integration tests. These test are checking multiple code units as well as how the are connected together.
e.g.seedu.address.logic.LogicManagerTest
-
This section describes the tools used for building, testing, and releasing the application.
See UsingGradle.adoc to learn how to use Gradle for build automation.
We use Travis CI and AppVeyor to perform Continuous Integration on our projects. See UsingTravis.adoc and UsingAppVeyor.adoc for more details.
We use Coveralls to track the code coverage of our projects. See UsingCoveralls.adoc for more details.
When a pull request has changes to asciidoc files, you can use Netlify to see a preview of how the HTML version of those asciidoc files will look like when the pull request is merged. See UsingNetlify.adoc for more details.
Here are the steps to create a new release.
-
Update the version number in
MainApp.java
. -
Generate a JAR file using Gradle.
-
Tag the repo with the version number. e.g.
v0.1
-
Create a new release using GitHub and upload the JAR file you created.
A project often depends on third-party libraries. For example, Address Book depends on the Jackson library for XML parsing. Managing these dependencies can be automated using Gradle. For example, Gradle can download the dependencies automatically, which is better than these alternatives.
a. Include those libraries in the repo (this bloats the repo size)
b. Require developers to download those libraries manually (this creates extra work for developers)
Suggested path for new programmers:
-
First, add small local-impact (i.e. the impact of the change does not go beyond the component) enhancements to one component at a time. Some suggestions are given in Section A.1, “Improving each component”.
-
Next, add a feature that touches multiple components to learn how to implement an end-to-end feature across all components. Section A.2, “Creating a new command:
remark
” explains how to go about adding such a feature.
Each individual exercise in this section is component-based (i.e. you would not need to modify the other components to get it to work).
Scenario: You are in charge of logic
. During dog-fooding, your team realize that it is troublesome for the user to type the whole command in order to execute a command. Your team devise some strategies to help cut down the amount of typing necessary, and one of the suggestions was to implement aliases for the command words. Your job is to implement such aliases.
💡
|
Do take a look at Section 3.3, “Logic component” before attempting to modify the Logic component.
|
-
Add a shorthand equivalent alias for each of the individual commands. For example, besides typing
clear
, the user can also typec
to remove all persons in the list.-
Hints
-
Just like we store each individual command word constant
COMMAND_WORD
inside*Command.java
(e.g.FindCommand#COMMAND_WORD
,DeleteCommand#COMMAND_WORD
), you need a new constant for aliases as well (e.g.FindCommand#COMMAND_ALIAS
). -
AddressBookParser
is responsible for analyzing command words.
-
-
Solution
-
Modify the switch statement in
AddressBookParser#parseCommand(String)
such that both the proper command word and alias can be used to execute the same intended command. -
Add new tests for each of the aliases that you have added.
-
Update the user guide to document the new aliases.
-
See this PR for the full solution.
-
-
Scenario: You are in charge of model
. One day, the logic
-in-charge approaches you for help. He wants to implement a command such that the user is able to remove a particular tag from everyone in the address book, but the model API does not support such a functionality at the moment. Your job is to implement an API method, so that your teammate can use your API to implement his command.
💡
|
Do take a look at Section 3.4, “Model component” before attempting to modify the Model component.
|
-
Add a
removeTag(Tag)
method. The specified tag will be removed from everyone in the address book.-
Hints
-
The
Model
and theAddressBook
API need to be updated. -
Think about how you can use SLAP to design the method. Where should we place the main logic of deleting tags?
-
Find out which of the existing API methods in
AddressBook
andPerson
classes can be used to implement the tag removal logic.AddressBook
allows you to update a person, andPerson
allows you to update the tags.
-
-
Solution
-
Implement a
removeTag(Tag)
method inAddressBook
. Loop through each person, and remove thetag
from each person. -
Add a new API method
deleteTag(Tag)
inModelManager
. YourModelManager
should callAddressBook#removeTag(Tag)
. -
Add new tests for each of the new public methods that you have added.
-
See this PR for the full solution.
-
-
Scenario: You are in charge of ui
. During a beta testing session, your team is observing how the users use your address book application. You realize that one of the users occasionally tries to delete non-existent tags from a contact, because the tags all look the same visually, and the user got confused. Another user made a typing mistake in his command, but did not realize he had done so because the error message wasn’t prominent enough. A third user keeps scrolling down the list, because he keeps forgetting the index of the last person in the list. Your job is to implement improvements to the UI to solve all these problems.
💡
|
Do take a look at Section 3.2, “UI component” before attempting to modify the UI component.
|
-
Use different colors for different tags inside person cards. For example,
friends
tags can be all in brown, andcolleagues
tags can be all in yellow.Before
After
-
Hints
-
The tag labels are created inside the
PersonCard
constructor (new Label(tag.tagName)
). JavaFX’sLabel
class allows you to modify the style of each Label, such as changing its color. -
Use the .css attribute
-fx-background-color
to add a color. -
You may wish to modify
DarkTheme.css
to include some pre-defined colors using css, especially if you have experience with web-based css.
-
-
Solution
-
You can modify the existing test methods for
PersonCard
's to include testing the tag’s color as well. -
See this PR for the full solution.
-
The PR uses the hash code of the tag names to generate a color. This is deliberately designed to ensure consistent colors each time the application runs. You may wish to expand on this design to include additional features, such as allowing users to set their own tag colors, and directly saving the colors to storage, so that tags retain their colors even if the hash code algorithm changes.
-
-
-
-
Modify
NewResultAvailableEvent
such thatResultDisplay
can show a different style on error (currently it shows the same regardless of errors).Before
After
-
Hints
-
NewResultAvailableEvent
is raised byCommandBox
which also knows whether the result is a success or failure, and is caught byResultDisplay
which is where we want to change the style to. -
Refer to
CommandBox
for an example on how to display an error.
-
-
Solution
-
Modify
NewResultAvailableEvent
's constructor so that users of the event can indicate whether an error has occurred. -
Modify
ResultDisplay#handleNewResultAvailableEvent(NewResultAvailableEvent)
to react to this event appropriately. -
You can write two different kinds of tests to ensure that the functionality works:
-
The unit tests for
ResultDisplay
can be modified to include verification of the color. -
The system tests
AddressBookSystemTest#assertCommandBoxShowsDefaultStyle() and AddressBookSystemTest#assertCommandBoxShowsErrorStyle()
to include verification forResultDisplay
as well.
-
-
See this PR for the full solution.
-
Do read the commits one at a time if you feel overwhelmed.
-
-
-
-
Modify the
StatusBarFooter
to show the total number of people in the address book.Before
After
-
Hints
-
StatusBarFooter.fxml
will need a newStatusBar
. Be sure to set theGridPane.columnIndex
properly for eachStatusBar
to avoid misalignment! -
StatusBarFooter
needs to initialize the status bar on application start, and to update it accordingly whenever the address book is updated.
-
-
Solution
-
Modify the constructor of
StatusBarFooter
to take in the number of persons when the application just started. -
Use
StatusBarFooter#handleAddressBookChangedEvent(AddressBookChangedEvent)
to update the number of persons whenever there are new changes to the addressbook. -
For tests, modify
StatusBarFooterHandle
by adding a state-saving functionality for the total number of people status, just like what we did for save location and sync status. -
For system tests, modify
AddressBookSystemTest
to also verify the new total number of persons status bar. -
See this PR for the full solution.
-
-
Scenario: You are in charge of storage
. For your next project milestone, your team plans to implement a new feature of saving the address book to the cloud. However, the current implementation of the application constantly saves the address book after the execution of each command, which is not ideal if the user is working on limited internet connection. Your team decided that the application should instead save the changes to a temporary local backup file first, and only upload to the cloud after the user closes the application. Your job is to implement a backup API for the address book storage.
💡
|
Do take a look at Section 3.5, “Storage component” before attempting to modify the Storage component.
|
-
Add a new method
backupAddressBook(ReadOnlyAddressBook)
, so that the address book can be saved in a fixed temporary location.-
Hint
-
Add the API method in
AddressBookStorage
interface. -
Implement the logic in
StorageManager
andXmlAddressBookStorage
class.
-
-
Solution
-
See this PR for the full solution.
-
-
By creating this command, you will get a chance to learn how to implement a feature end-to-end, touching all major components of the app.
Scenario: You are a software maintainer for addressbook
, as the former developer team has moved on to new projects. The current users of your application have a list of new feature requests that they hope the software will eventually have. The most popular request is to allow adding additional comments/notes about a particular contact, by providing a flexible remark
field for each contact, rather than relying on tags alone. After designing the specification for the remark
command, you are convinced that this feature is worth implementing. Your job is to implement the remark
command.
Edits the remark for a person specified in the INDEX
.
Format: remark INDEX r/[REMARK]
Examples:
-
remark 1 r/Likes to drink coffee.
Edits the remark for the first person toLikes to drink coffee.
-
remark 1 r/
Removes the remark for the first person.
Let’s start by teaching the application how to parse a remark
command. We will add the logic of remark
later.
Main:
-
Add a
RemarkCommand
that extendsCommand
. Upon execution, it should just throw anException
. -
Modify
AddressBookParser
to accept aRemarkCommand
.
Tests:
-
Add
RemarkCommandTest
that tests thatexecute()
throws an Exception. -
Add new test method to
AddressBookParserTest
, which tests that typing "remark" returns an instance ofRemarkCommand
.
Let’s teach the application to parse arguments that our remark
command will accept. E.g. 1 r/Likes to drink coffee.
Main:
-
Modify
RemarkCommand
to take in anIndex
andString
and print those two parameters as the error message. -
Add
RemarkCommandParser
that knows how to parse two arguments, one index and one with prefix 'r/'. -
Modify
AddressBookParser
to use the newly implementedRemarkCommandParser
.
Tests:
-
Modify
RemarkCommandTest
to test theRemarkCommand#equals()
method. -
Add
RemarkCommandParserTest
that tests different boundary values forRemarkCommandParser
. -
Modify
AddressBookParserTest
to test that the correct command is generated according to the user input.
Let’s add a placeholder on all our PersonCard
s to display a remark for each person later.
Main:
-
Add a
Label
with any random text insidePersonListCard.fxml
. -
Add FXML annotation in
PersonCard
to tie the variable to the actual label.
Tests:
-
Modify
PersonCardHandle
so that future tests can read the contents of the remark label.
We have to properly encapsulate the remark in our Person
class. Instead of just using a String
, let’s follow the conventional class structure that the codebase already uses by adding a Remark
class.
Main:
-
Add
Remark
to model component (you can copy fromAddress
, remove the regex and change the names accordingly). -
Modify
RemarkCommand
to now take in aRemark
instead of aString
.
Tests:
-
Add test for
Remark
, to test theRemark#equals()
method.
Now we have the Remark
class, we need to actually use it inside Person
.
Main:
-
Add
getRemark()
inPerson
. -
You may assume that the user will not be able to use the
add
andedit
commands to modify the remarks field (i.e. the person will be created without a remark). -
Modify
SampleDataUtil
to add remarks for the sample data (delete youraddressBook.xml
so that the application will load the sample data when you launch it.)
We now have Remark
s for Person
s, but they will be gone when we exit the application. Let’s modify XmlAdaptedPerson
to include a Remark
field so that it will be saved.
Main:
-
Add a new Xml field for
Remark
.
Tests:
-
Fix
invalidAndValidPersonAddressBook.xml
,typicalPersonsAddressBook.xml
,validAddressBook.xml
etc., such that the XML tests will not fail due to a missing<remark>
element.
Since Person
can now have a Remark
, we should add a helper method to PersonBuilder
, so that users are able to create remarks when building a Person
.
Tests:
-
Add a new method
withRemark()
forPersonBuilder
. This method will create a newRemark
for the person that it is currently building. -
Try and use the method on any sample
Person
inTypicalPersons
.
Our remark label in PersonCard
is still a placeholder. Let’s bring it to life by binding it with the actual remark
field.
Main:
-
Modify
PersonCard
's constructor to bind theRemark
field to thePerson
's remark.
Tests:
-
Modify
GuiTestAssert#assertCardDisplaysPerson(…)
so that it will compare the now-functioning remark label.
We now have everything set up… but we still can’t modify the remarks. Let’s finish it up by adding in actual logic for our remark
command.
Main:
-
Replace the logic in
RemarkCommand#execute()
(that currently just throws anException
), with the actual logic to modify the remarks of a person.
Tests:
-
Update
RemarkCommandTest
to test that theexecute()
logic works.
See this PR for the step-by-step solution.
Target user profile:
-
JCRC member of a Hall of NUS
-
has to manage a significant number of hall residents
-
has to manage budget for CCAs
-
has to consolidate hall event dates
-
has to notify hall residents about events
-
prefer desktop apps over other types
-
can type fast
-
prefers typing over mouse input
-
is reasonably comfortable using CLI apps
Value proposition: manage hall residents faster and easier than a typical mouse/GUI driven app
Priorities: High (must have) - * * *
, Medium (nice to have) - * *
, Low (unlikely to have) - *
Priority | As a … | I want to … | So that I can… |
---|---|---|---|
|
new JCRC member |
see usage instructions |
refer to instructions when I forget how to use the App |
|
JCRC member |
add a new person |
|
|
JCRC member |
delete a person |
remove entries that I no longer need |
|
JCRC member |
list all persons |
|
|
JCRC member |
find a person by name |
locate details of persons without having to go through the entire list |
|
JCRC member |
mass import residents' details |
save time from not having to manually key in contacts one by one |
|
JCRC member |
delete selected groups of residents |
save time from not having to search for and delete persons one by one |
|
JCRC member |
delete selected tags from residents |
accommodate mass changes in CCA members list |
|
JCRC member |
compose emails |
ease the process of sending emails to groups of hall residents |
|
JCRC member |
delete emails |
remove email files that I no longer need |
|
JCRC member |
list all emails |
see what emails exist |
|
JCRC member |
view emails |
see the contents of an email |
|
JCRC member |
publish calenders |
prevent clashes between events and inform hall residents of upcoming events |
|
JCRC Finance Director |
keep track of each CCA’s budget |
prevent problems during an audit |
|
JCRC member |
hide private contact details by default |
minimize chance of someone else seeing them by accident |
|
JCRC member |
list which residents are in specified CCAs |
contact personnel in the CCA more efficiently |
|
JCRC member |
sort persons by name |
locate a resident easily |
|
JCRC member |
store pictures under contact details |
easily identify hall residents and distinguish between those with similar names |
{More to be added}
(For all use cases below, the System is the Hallper
and the Actor is the JCRC member
, unless specified otherwise)
MSS
-
JCRC member requests to view usage instructions
-
Hallper shows usage instructions
Use case ends.
MSS
-
JCRC member requests to add a person with specific details
-
Hallper adds the person
Use case ends.
MSS
-
JCRC member requests to list persons
-
Hallper shows a list of persons
-
JCRC member requests to delete a specific person in the list
-
Hallper deletes the person
Use case ends.
Extensions
-
2a. The list is empty.
Use case ends.
-
3a. The given index is invalid.
-
3a1. Hallper shows an error message.
Use case resumes at step 2.
-
MSS
-
JCRC member requests to list persons
-
Hallper shows list of all persons
Use case ends.
MSS
-
JCRC member requests to search by specific tag
-
Hallper shows list of only persons with specified tag
Use case ends.
MSS
-
JCRC member requests to find person containing specific name
-
Hallper shows list of persons with matching name
Use case ends.
MSS
-
JCRC member requests to clear persons
-
Hallper clears all persons
Use case ends.
Extensions
-
1a. JCRC member requests to clear persons with specific tag(s)
-
1a1. Hallper clears all persons with specified tag(s)
Use case ends.
-
MSS
-
JCRC member requests to import contacts from file location
-
Hallper imports contacts
Use case ends.
Extensions
-
3a. File is invalid
-
3a1. Hallper shows error message
Use case ends.
-
MSS
-
JCRC member requests to export contacts to location
-
Hallper exports contacts to location
Use case ends.
Extensions
-
3a. File is invalid
-
3a1. Hallper shows error message
Use case ends.
-
MSS
-
JCRC member requests to erase specific tag(s)
-
Hallper erases specified tag(s) from all persons
Use case ends.
Extensions
-
3a. Tag does not exist
-
3a1. Hallper shows error message
Use case ends.
-
MSS
-
JCRC member requests to list persons.
-
Hallper shows list of persons.
-
JCRC member requests to compose an email to specific people in the list
-
Hallper requests for all details of email (Sender, indexes, subject, content)
-
JCRC member enters all details
-
Hallper saves an output file in the computer
Use case ends.
Extensions
-
2a. The list is empty.
Use case ends.
-
5a. The given index is invalid.
-
5a1. Hallper shows an error message.
Use case resumes at step 4.
-
MSS
-
JCRC member requests to list persons
-
Hallper shows list of persons
-
JCRC member requests to compose an email to the current list of persons
-
Hallper requests for all details of email (Sender, subject, content)
-
JCRC member enters all details
-
Hallper saves an output file in the computer
Use case ends.
Extensions
-
2a. The list is empty.
Use case ends.
MSS
-
JCRC member requests to list emails
-
Hallper shows list of all emails
Use case ends.
MSS
-
JCRC member requests to view an email
-
Hallper requests for email subject
-
JCRC member enters subject
-
Hallper displays email with given subject
Use case ends.
Extensions
-
3a. Email with given subject does not exist.
-
3a1. Hallper shows an error message.
Use case resumes at step 2.
-
MSS
-
JCRC member requests to list persons
-
Hallper shows list of persons
-
JCRC member requests to select a specific person in the list
-
Hallper shows details of selected person
Use case ends.
Extensions
-
2a. The list is empty.
Use case ends.
-
3a. The given index is invalid.
-
3a1. Hallper shows an error message.
Use case resumes at step 2.
-
MSS
-
JCRC member requests to publish calendar
-
Hallper requests for the intended calendar month
-
JCRC member enters the month
-
Hallper saves an output file in the computer
Use case ends.
MSS
-
JCRC member requests to delete a calendar
-
Hallper requests the calendar month
-
JCRC member enters the month
-
Hallper deletes the specified calendar
Use case ends.
Extensions
-
3a. Calendar does not exist
-
3a1. Hallper shows an error message
Use case ends.
-
MSS
-
JCRC member requests to add a new event to a calendar
-
Hallper requests for all details of event (Month, year, day, start time, end time, event name)
-
JCRC member enters all details
-
Hallper creates a new event on the calendar
Use case ends.
Extensions
-
3a. Another event clashes with the same timing
-
3a1. Hallper shows an error message
Use case ends.
-
MSS
-
JCRC member requests to delete an event on a calendar
-
Hallper requests for all details of event (Month, year, day, event name)
-
JCRC member enters all details
-
Hallper deletes the specified event on the calendar
Use case ends.
Extensions
-
3a. Event does not exist
-
3a1. Hallper shows an error message
Use case ends.
-
MSS
-
JCRC member requests to add a CCA
-
Hallper requests for details of CCA (Name of CCA, names of head and vice-head, budget)
-
JCRC member enters the details
-
Hallper displays the details of the CCA
Use Case ends.
Extensions
-
3a. Name(s) of head and/or vice-head is/are not detected in the contact list
-
3a1. Hallper shows an error message
Use case resumes at step 2.
-
-
3b. Budget entered is invalid
-
3b1. Hallper shows an error message
Use case resumes at step 2.
-
MSS
-
JCRC member requests to list CCAs
-
Hallper shows list of CCAs
-
JCRC member requests to modify a specific CCA in the list
-
Hallper requests for new details of the CCA (Name of CCA, names of head and vice-head, budget)
-
JCRC member enters the details
-
Hallper displays the new details of the CCA
Use Case ends.
Extensions
-
2a. The list is empty
Use case ends.
-
3a. The given index is invalid
-
3a1. Hallper displays error message
Use case resumes at step 2.
-
-
5a. Name(s) of head and/or vice-head is/are not detected in the contact list
-
5a1. Hallper shows an error message
Use case resumes at step 2.
-
-
5b. Budget entered is invalid
-
5b1. Hallper shows an error message
Use case resumes at step 2.
-
MSS
-
JCRC member requests to list CCAs
-
Hallper shows list of CCAs
-
JCRC member requests to delete a specific CCA in the list
-
Hallper requests for confirmation of deletion
-
JCRC member confirms
-
Hallper deletes the CCA
Use Case ends.
Extensions
-
2a. The list is empty
Use case ends.
-
3a. The given index is invalid
-
3a1. Hallper shows an error message
Use case resumes at step 2.
-
-
5a. JCRC member cancels instead
Use case ends.
MSS
-
JCRC member requests to list CCAs
-
Hallper shows list of CCAs
-
JCRC member requests to select a specific CCA in the list
-
Hallper shows details of selected CCA
Use case ends.
Extensions
-
2a. The list is empty.
Use case ends.
-
3a. The given index is invalid.
-
3a1. Hallper shows an error message.
Use case resumes at step 2.
-
MSS
-
JCRC member requests for list of CCAs
-
Hallper displays list of CCAs
Use Case ends.
MSS
-
JCRC member requests for list of CCAs
-
Hallper displays list of CCAs
-
JCRC member requests to add a transaction for a specific CCA in the list
-
Hallper requests transaction details (Amount of money, name of person-in-charge, comments)
-
JCRC member enters transaction details
-
Hallper displays details of the CCA
Use Case ends.
Extensions
-
2a. The list is empty
Use case ends.
-
3a. The given index is invalid
-
3a1. Hallper shows an error message
Use case resumes at step 2.
-
-
5a. Name of person-in-charge is not detected in the contact list
-
5a1. Hallper shows an error message
Use case resumes at step 4.
-
-
5b. Amount of money entered is invalid
-
5b1. Hallper shows an error message
Use case resumes at step 4.
-
-
5c. Comments left empty
-
5c1. Hallper shows an error message
Use case resumes at step 4.
-
MSS
-
JCRC member requests sort the contacts
-
Hallper sorts the contacts
Use case ends.
MSS
-
JCRC member requests to add a person’s image
-
Hallper requests for room number and image location
-
JCRC member enters room number and image location
-
Hallper adds the image
Use case ends.
{More to be added}
-
Should work on any mainstream OS as long as it has Java
9
or higher installed. -
Should be able to hold up to 1000 persons without a noticeable sluggishness in performance for typical usage.
-
A user with above average typing speed for regular English text (i.e. not code, not system admin commands) should be able to accomplish most of the tasks faster using commands than using the mouse.
{More to be added}
- Mainstream OS
-
Windows, Linux, Unix, OS-X.
- Private contact detail
-
A contact detail that is not meant to be shared with others.
- CCA
-
Co-Curricular Activity that residents can join within their respective halls.
- JCRC
-
Junior Common Room Committee in charge of administrative duties within their respective halls.
Given below are instructions to test the app manually.
ℹ️
|
These instructions only provide a starting point for testers to work on; testers are expected to do more exploratory testing. |
-
Initial launch
-
Download the jar file and copy into an empty folder
-
Double-click the jar file
Expected: Shows the GUI with a set of sample contacts. The window size may not be optimum.
-
-
Saving window preferences
-
Resize the window to an optimum size. Move the window to a different location. Close the window.
-
Re-launch the app by double-clicking the jar file.
Expected: The most recent window size and location is retained.
-
{ more test cases … }
-
Deleting a person while all persons are listed
-
Prerequisites: List all persons using the
list
command. Multiple persons in the list. -
Test case:
delete 1
Expected: First contact is deleted from the list. Details of the deleted contact shown in the status message. Timestamp in the status bar is updated. -
Test case:
delete 0
Expected: No person is deleted. Error details shown in the status message. Status bar remains the same. -
Other incorrect delete commands to try:
delete
,delete x
(where x is larger than the list size) {give more}
Expected: Similar to previous.
-
{ more test cases … }