forked from se-edu/addressbook-level2
-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[W5][W13-1]Gong Changda #151
Open
GongChangda
wants to merge
4
commits into
nus-cs2103-AY1819S2:master
Choose a base branch
from
GongChangda:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
4191866
Add a command to sort the address book.
GongChangda b4d2967
Modify the input.txt to make the format correct and also add one JUni…
GongChangda dd9e653
Modify expected.txt to make it correct
GongChangda 007276a
Delete some unnecessary imports
GongChangda File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package seedu.addressbook.commands; | ||
|
||
public class SortCommand extends Command { | ||
|
||
public static final String COMMAND_WORD = "sort"; | ||
public static final String MESSAGE_USAGE = COMMAND_WORD | ||
+ " : Sorts all the persons in the address book according to their names in alphabetical order.\n" | ||
+ "Example: " + COMMAND_WORD; | ||
public static final String MESSAGE_SUCCESS = "Address book sorted!"; | ||
|
||
@Override | ||
public CommandResult execute() { | ||
addressBook.sort(); | ||
return new CommandResult(MESSAGE_SUCCESS); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,8 @@ | |
|| Example: help | ||
|| exit: Exits the program. | ||
|| Example: exit | ||
|| sort : Sorts all the persons in the address book according to their names in alphabetical order. | ||
|| Example: sort | ||
|| =================================================== | ||
|| Enter command: || [Command entered: delete 1] | ||
|| The person index provided is invalid | ||
|
@@ -297,6 +299,42 @@ | |
|| | ||
|| 0 persons listed! | ||
|| =================================================== | ||
|| Enter command: || [Command entered: add Charlie Dickson pp/333333 e/[email protected] a/333, gamma street t/friends t/school] | ||
|| New person added: Charlie Dickson Phone: (private) 333333 Email: [email protected] Address: 333, gamma street Tags: [school][friends] | ||
|| =================================================== | ||
|| Enter command: || [Command entered: add Adam Brown p/111111 e/[email protected] a/111, alpha street] | ||
|| New person added: Adam Brown Phone: 111111 Email: [email protected] Address: 111, alpha street Tags: | ||
|| =================================================== | ||
|| Enter command: || [Command entered: add Esther Potato p/555555 e/[email protected] pa/555, epsilon street t/tubers t/starchy] | ||
|| New person added: Esther Potato Phone: 555555 Email: [email protected] Address: (private) 555, epsilon street Tags: [tubers][starchy] | ||
|| =================================================== | ||
|| Enter command: || [Command entered: add Betsy Choo pp/222222 pe/[email protected] pa/222, beta street t/secretive] | ||
|| New person added: Betsy Choo Phone: (private) 222222 Email: (private) [email protected] Address: (private) 222, beta street Tags: [secretive] | ||
|| =================================================== | ||
|| Enter command: || [Command entered: add Dickson Ee p/444444 pe/[email protected] a/444, delta street t/friends] | ||
|| New person added: Dickson Ee Phone: 444444 Email: (private) [email protected] Address: 444, delta street Tags: [friends] | ||
|| =================================================== | ||
|| Enter command: || [Command entered: list] | ||
|| 1. Charlie Dickson Email: [email protected] Address: 333, gamma street Tags: [school][friends] | ||
|| 2. Adam Brown Phone: 111111 Email: [email protected] Address: 111, alpha street Tags: | ||
|| 3. Esther Potato Phone: 555555 Email: [email protected] Tags: [tubers][starchy] | ||
|| 4. Betsy Choo Tags: [secretive] | ||
|| 5. Dickson Ee Phone: 444444 Address: 444, delta street Tags: [friends] | ||
|| | ||
|| 5 persons listed! | ||
|| =================================================== | ||
|| Enter command: || [Command entered: sort] | ||
|| Address book sorted! | ||
|| =================================================== | ||
|| Enter command: || [Command entered: list] | ||
|| 1. Adam Brown Phone: 111111 Email: [email protected] Address: 111, alpha street Tags: | ||
|| 2. Betsy Choo Tags: [secretive] | ||
|| 3. Charlie Dickson Email: [email protected] Address: 333, gamma street Tags: [school][friends] | ||
|| 4. Dickson Ee Phone: 444444 Address: 444, delta street Tags: [friends] | ||
|| 5. Esther Potato Phone: 555555 Email: [email protected] Tags: [tubers][starchy] | ||
|| | ||
|| 5 persons listed! | ||
|| =================================================== | ||
|| Enter command: || [Command entered: exit] | ||
|| Exiting Address Book as requested ... | ||
|| =================================================== | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -149,6 +149,22 @@ | |
list | ||
|
||
########################################################## | ||
# test sort command | ||
########################################################## | ||
# first we add some persons to the address book. | ||
add Charlie Dickson pp/333333 e/[email protected] a/333, gamma street t/friends t/school | ||
add Adam Brown p/111111 e/[email protected] a/111, alpha street | ||
add Esther Potato p/555555 e/[email protected] pa/555, epsilon street t/tubers t/starchy | ||
add Betsy Choo pp/222222 pe/[email protected] pa/222, beta street t/secretive | ||
add Dickson Ee p/444444 pe/[email protected] a/444, delta street t/friends | ||
list | ||
|
||
# Now we sort the address book | ||
sort | ||
|
||
# After that we examine what we get | ||
list | ||
########################################################## | ||
# test exit command | ||
########################################################## | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
package seedu.addressbook.commands; | ||
|
||
|
||
import static org.junit.Assert.assertTrue; | ||
import java.util.Collections; | ||
import org.junit.Test; | ||
import seedu.addressbook.data.AddressBook; | ||
import seedu.addressbook.data.person.Address; | ||
import seedu.addressbook.data.person.Email; | ||
import seedu.addressbook.data.person.Name; | ||
import seedu.addressbook.data.person.Person; | ||
import seedu.addressbook.data.person.Phone; | ||
import seedu.addressbook.util.TestUtil; | ||
|
||
|
||
public class SortCommandTest { | ||
private AddressBook addressBook; | ||
private String testResult; | ||
|
||
@Test | ||
public void sortTest() throws Exception{ | ||
Person johnDoe = new Person(new Name("John Doe"), new Phone("61234567", false), | ||
new Email("[email protected]", false), new Address("395C Ben Road", false), Collections.emptySet()); | ||
Person janeDoe = new Person(new Name("Jane Doe"), new Phone("91234567", false), | ||
new Email("[email protected]", false), new Address("33G Ohm Road", false), Collections.emptySet()); | ||
Person samDoe = new Person(new Name("Sam Doe"), new Phone("63345566", false), | ||
new Email("[email protected]", false), new Address("55G Abc Road", false), Collections.emptySet()); | ||
Person davidGrant = new Person(new Name("David Grant"), new Phone("61121122", false), | ||
new Email("[email protected]", false), new Address("44H Define Road", false), | ||
Collections.emptySet()); | ||
|
||
addressBook = TestUtil.createAddressBook(johnDoe, janeDoe, davidGrant, samDoe); | ||
addressBook.sort(); | ||
testResult = addressBook.getAllPersons().immutableListView().get(0).getName().fullName; | ||
assertTrue(testResult.equals("David Grant")); | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good effort in writing JUnit test.