Skip to content

Commit 6c67479

Browse files
Merge pull request nus-cs2103-AY1920S1#122 from fabbbbbbyy/master
Add edge cases
2 parents efbe5b5 + c575993 commit 6c67479

File tree

7 files changed

+86
-43
lines changed

7 files changed

+86
-43
lines changed

docs/UserGuide.adoc

+24-23
Original file line numberDiff line numberDiff line change
@@ -421,29 +421,30 @@ Format: `quiz manual quizID/... questionNumber/...`
421421

422422
The format supported by this feature includes:
423423

424-
- `Quiz ID` (The name of the quiz)
425-
- `Question Numbers` (The question numbers you want to add to the quiz)
424+
. `Quiz ID` (The label of the quiz)
425+
. `Question Numbers` (The question numbers you want to add to the quiz)
426426

427427
Examples:
428428

429429
* `quiz manual quizID/CS2103T questionNumber/1 2 3` +
430-
Adds question numbers 1, 2 and 3 to the quiz named CS2103T.
430+
Adds question numbers 1, 2 and 3 to the quiz labelled CS2103T.
431431

432432
==== Creating a Quiz automatically: `auto`
433433

434434
Allows a user to create a quiz automatically. +
435+
[NOTE] The questions chosen are randomised from the questions that you have previously added. As such, the user has to ensure enough questions are available in storage for quiz creation.
435436
Format: `quiz auto quizID/... numQuestions/... type/...`
436437

437438
The format supported by this feature includes:
438439

439-
- `Quiz ID` (The name of the quiz)
440-
- `Number of Questions` (The number of questions you want added to the quiz)
441-
- `Question Type` (mcq, open, all)
440+
. `Quiz ID` (The label of the quiz)
441+
. `Number of Questions` (The number of questions you want added to the quiz)
442+
. `Question Type` (mcq, open, all)
442443

443444
Examples:
444445

445446
* `quiz auto quizID/CS2103T numQuestions/2 type/mcq` +
446-
Adds 2 questions of type mcq to the quiz named CS2103T.
447+
Adds 2 questions of type mcq to the quiz labelled CS2103T.
447448

448449
==== Adding a Question to a Quiz: `add`
449450

@@ -452,14 +453,14 @@ Format: `quiz add quizID/... questionNumber/... quizQuestionNumber/...`
452453

453454
The format supported by this feature includes:
454455

455-
- `Quiz ID` (The name of your quiz)
456-
- `Question Number` (The question number you want to add to the quiz)
457-
- `Quiz Question Number` (The question number in the quiz you want to add the question to)
456+
. `Quiz ID` (The label of your quiz)
457+
. `Question Number` (The question number you want to add to the quiz)
458+
. `Quiz Question Number` (The question number in the quiz you want to add the question to)
458459

459460
Examples:
460461

461462
* `quiz add quizID/CS2103T questionNumber/2 quizQuestionNumber/3` +
462-
Adds question 2 to the quiz question number 3 for the quiz named CS2103T.
463+
Adds question 2 to the quiz question number 3 for the quiz labelled CS2103T.
463464

464465
==== Deleting a Question from a Quiz: `delete`
465466

@@ -468,27 +469,27 @@ Format: `quiz delete quizID/... quizQuestionNumber/...`
468469

469470
The format supported by this feature includes:
470471

471-
- `Quiz ID` (The name of the quiz)
472-
- `Quiz Question Number` (The question number of the question in the quiz to be deleted)
472+
. `Quiz ID` (The label of the quiz)
473+
. `Quiz Question Number` (The question number of the question in the quiz to be deleted)
473474

474475
Examples:
475476

476477
* `quiz delete quizID/CS2103T quizQuestionNumber/3` +
477-
Deletes the quiz question number 3 for the quiz named CS2103T.
478+
Deletes the quiz question number 3 for the quiz labelled CS2103T.
478479

479480
==== Exporting a Quiz to HTML: `export`
480481

481-
Allows a user to export a quiz to a HTML file. +
482+
Allows a user to export a quiz to a formatted HTML file. +
482483
Format: `quiz export quizID/...`
483484

484485
The format supported by this feature includes:
485486

486-
- `Quiz ID` (The name of the quiz)
487+
. `Quiz ID` (The label of the quiz)
487488

488489
Examples:
489490

490491
* `quiz export quizID/CS2103T` +
491-
Exports the quiz named CS2103T to a HTML file.
492+
Exports the quiz labelled CS2103T to a formatted HTML file.
492493

493494
==== Listing a Quiz: `list`
494495

@@ -497,12 +498,12 @@ Format: `quiz list quizID/...`
497498

498499
The format supported by this feature includes:
499500

500-
- `Quiz ID` (The name of the quiz)
501+
. `Quiz ID` (The label of the quiz)
501502

502503
Examples:
503504

504505
* `quiz list quizID/CS2103T` +
505-
Lists the questions and answers for the quiz named CS2103T.
506+
Lists the questions and answers for the quiz labelled CS2103T.
506507

507508
==== Showing only a Quiz's Questions: `showQuestions`
508509

@@ -511,12 +512,12 @@ Format: `quiz showQuestions quizID/...`
511512

512513
The format supported by this feature includes:
513514

514-
- `Quiz ID` (The name of the quiz)
515+
. `Quiz ID` (The label of the quiz)
515516

516517
Examples:
517518

518519
* `quiz showQuestions quizID/CS2103T` +
519-
Shows only the questions for the quiz named CS2103T.
520+
Shows only the questions for the quiz labelled CS2103T.
520521

521522
==== Showing only a Quiz's Answers: `showAnswers`
522523

@@ -525,12 +526,12 @@ Format: `quiz showAnswers quizID/...`
525526

526527
The format supported by this feature includes:
527528

528-
- `Quiz ID` (The name of the quiz)
529+
. `Quiz ID` (The label of the quiz)
529530

530531
Examples:
531532

532533
* `quiz showAnswers quizID/CS2103T` +
533-
Shows only the answers for the quiz named CS2103T.
534+
Shows only the answers for the quiz labelled CS2103T.
534535

535536
=== Events ​-​ `event`
536537

src/main/java/seedu/address/logic/commands/quiz/QuizCreateAutomaticallyCommand.java

+16-3
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,14 @@ public CommandResult execute(Model model) throws CommandException {
4949
if (model.checkQuizExists(quizId)) {
5050
return new CommandResult(String.format(QUIZ_ALREADY_EXISTS, quizId));
5151
}
52-
QuizBank.setCurrentlyQueriedQuiz(quizId);
53-
model.createQuizAutomatically(quizId, numQuestions, type);
54-
return new CommandResult(generateSuccessMessage(), CommandResultType.SHOW_QUIZ_ALL);
52+
53+
boolean isSuccess = model.createQuizAutomatically(quizId, numQuestions, type);
54+
if (isSuccess) {
55+
QuizBank.setCurrentlyQueriedQuiz(quizId);
56+
return new CommandResult(generateSuccessMessage(), CommandResultType.SHOW_QUIZ_ALL);
57+
} else {
58+
return new CommandResult(generateFailureMessage());
59+
}
5560
}
5661

5762
/**
@@ -66,6 +71,14 @@ private String generateSuccessMessage() {
6671
}
6772
}
6873

74+
/**
75+
* Generates a command execution failure message.
76+
* @return The String representation of a failure message.
77+
*/
78+
private String generateFailureMessage() {
79+
return "You do not have enough questions in the storage! Add more questions and try again.";
80+
}
81+
6982
@Override
7083
public boolean equals(Object other) {
7184
// short circuit if same object

src/main/java/seedu/address/logic/commands/quiz/QuizCreateManuallyCommand.java

+20-4
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,10 @@ public QuizCreateManuallyCommand(HashMap<String, String> fields) {
3737

3838
ArrayList<Integer> questionNumbers = new ArrayList<>();
3939
for (String s : splitQuestionNumbers) {
40-
questionNumbers.add(Integer.parseInt(s));
40+
int convertedInt = Integer.parseInt(s);
41+
if (!questionNumbers.contains(convertedInt)) {
42+
questionNumbers.add(convertedInt);
43+
}
4144
}
4245

4346
this.quizId = quizId;
@@ -55,9 +58,14 @@ public CommandResult execute(Model model) throws CommandException {
5558
if (model.checkQuizExists(quizId)) {
5659
return new CommandResult(String.format(QUIZ_ALREADY_EXISTS, quizId));
5760
}
58-
QuizBank.setCurrentlyQueriedQuiz(quizId);
59-
model.createQuizManually(quizId, questionNumbers);
60-
return new CommandResult(generateSuccessMessage(), CommandResultType.SHOW_QUIZ_ALL);
61+
62+
boolean isSuccess = model.createQuizManually(quizId, questionNumbers);
63+
if (isSuccess) {
64+
QuizBank.setCurrentlyQueriedQuiz(quizId);
65+
return new CommandResult(generateSuccessMessage(), CommandResultType.SHOW_QUIZ_ALL);
66+
} else {
67+
return new CommandResult(generateFailureMessage());
68+
}
6169
}
6270

6371
/**
@@ -73,6 +81,14 @@ private String generateSuccessMessage() {
7381
}
7482
}
7583

84+
/**
85+
* Generates a command execution failure message.
86+
* @return The String representation of a failure message.
87+
*/
88+
private String generateFailureMessage() {
89+
return "You have entered one or more invalid question indexes.";
90+
}
91+
7692
@Override
7793
public boolean equals(Object other) {
7894
// short circuit if same object

src/main/java/seedu/address/model/Model.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -309,12 +309,12 @@ public interface Model {
309309
/**
310310
* Creates a quiz manually.
311311
*/
312-
void createQuizManually(String quizId, ArrayList<Integer> questionNumbers);
312+
boolean createQuizManually(String quizId, ArrayList<Integer> questionNumbers);
313313

314314
/**
315315
* Creates a quiz automatically.
316316
*/
317-
void createQuizAutomatically(String quizId, int numQuestions, String type);
317+
boolean createQuizAutomatically(String quizId, int numQuestions, String type);
318318

319319
/**
320320
* Adds a question to a quiz. {@code quizId} Must already exist in the quiz bank. {@code

src/main/java/seedu/address/model/ModelManager.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -512,13 +512,13 @@ public ObservableList<Question> getSlideshowQuestions() {
512512
//region Quizzes
513513

514514
@Override
515-
public void createQuizManually(String quizId, ArrayList<Integer> questionNumbers) {
516-
savedQuizzes.createQuizManually(quizId, questionNumbers, savedQuestions);
515+
public boolean createQuizManually(String quizId, ArrayList<Integer> questionNumbers) {
516+
return savedQuizzes.createQuizManually(quizId, questionNumbers, savedQuestions);
517517
}
518518

519519
@Override
520-
public void createQuizAutomatically(String quizId, int numQuestions, String type) {
521-
savedQuizzes.createQuizAutomatically(quizId, numQuestions, type, savedQuestions);
520+
public boolean createQuizAutomatically(String quizId, int numQuestions, String type) {
521+
return savedQuizzes.createQuizAutomatically(quizId, numQuestions, type, savedQuestions);
522522
}
523523

524524
@Override

src/main/java/seedu/address/model/quiz/QuizManager.java

+14-3
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,19 @@ public QuizManager() {
2828
* @param questionNumbers The question numbers to be added to the quiz.
2929
* @param savedQuestions The saved questions.
3030
* @param quizBank The quiz bank.
31+
* @return True if the quiz has been created, false if not.
3132
*/
32-
public static void createQuizManually(String quizId, ArrayList<Integer> questionNumbers,
33+
public static boolean createQuizManually(String quizId, ArrayList<Integer> questionNumbers,
3334
SavedQuestions savedQuestions, QuizBank quizBank) {
3435
Quiz quiz = new Quiz(quizId);
3536
QuestionBank questionBank = savedQuestions.getQuestionBank();
37+
int questionBankSize = questionBank.getAllQuestions().size();
3638

3739
ArrayList<Question> questions = new ArrayList<>();
3840
for (Integer i : questionNumbers) {
41+
if (i < 0 || i > questionBankSize) {
42+
return false;
43+
}
3944
questions.add(questionBank.getQuestion(Index.fromOneBased(i)));
4045
}
4146

@@ -44,6 +49,7 @@ public static void createQuizManually(String quizId, ArrayList<Integer> question
4449
}
4550

4651
quizBank.addQuiz(quiz);
52+
return true;
4753
}
4854

4955
/**
@@ -53,8 +59,9 @@ public static void createQuizManually(String quizId, ArrayList<Integer> question
5359
* @param type The type of questions to be added to the quiz.
5460
* @param savedQuestions The saved questions.
5561
* @param quizBank The quiz bank.
62+
* @return True if the quiz has been created, false if not.
5663
*/
57-
public static void createQuizAutomatically(String quizId, int numQuestions, String type,
64+
public static boolean createQuizAutomatically(String quizId, int numQuestions, String type,
5865
SavedQuestions savedQuestions, QuizBank quizBank) {
5966
Quiz quiz = new Quiz(quizId);
6067
QuestionBank questionBank = savedQuestions.getQuestionBank();
@@ -76,6 +83,10 @@ public static void createQuizAutomatically(String quizId, int numQuestions, Stri
7683

7784
int listSize = relevantQuestions.size();
7885

86+
if (listSize < numQuestions) {
87+
return false;
88+
}
89+
7990
if (listSize > numQuestions) {
8091
for (int i = 0; i < numQuestions; i++) {
8192
int randomQuestionIndex = getRandomQuestionIndex(listSize);
@@ -92,8 +103,8 @@ public static void createQuizAutomatically(String quizId, int numQuestions, Stri
92103
quiz.addQuestion(q);
93104
}
94105
}
95-
96106
quizBank.addQuiz(quiz);
107+
return true;
97108
}
98109

99110
/**

src/main/java/seedu/address/model/quiz/SavedQuizzes.java

+6-4
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,11 @@ public void resetData(ReadOnlyQuizzes newData) {
7373
* @param quizId The identifier of the quiz to be created.
7474
* @param questionNumbers The question numbers to be added to the quiz.
7575
* @param savedQuestions The saved questions.
76+
* @return True is quiz has been created, false if not.
7677
*/
77-
public void createQuizManually(String quizId, ArrayList<Integer> questionNumbers,
78+
public boolean createQuizManually(String quizId, ArrayList<Integer> questionNumbers,
7879
SavedQuestions savedQuestions) {
79-
QuizManager.createQuizManually(quizId, questionNumbers, savedQuestions, quizzes);
80+
return QuizManager.createQuizManually(quizId, questionNumbers, savedQuestions, quizzes);
8081
}
8182

8283
/**
@@ -85,10 +86,11 @@ public void createQuizManually(String quizId, ArrayList<Integer> questionNumbers
8586
* @param numQuestions The number of questions to be added to the quiz.
8687
* @param type The type of questions to be added to the quiz.
8788
* @param savedQuestions The saved questions.
89+
* @return True if the quiz has been created, false if not.
8890
*/
89-
public void createQuizAutomatically(String quizId, int numQuestions, String type,
91+
public boolean createQuizAutomatically(String quizId, int numQuestions, String type,
9092
SavedQuestions savedQuestions) {
91-
QuizManager.createQuizAutomatically(quizId, numQuestions, type, savedQuestions, quizzes);
93+
return QuizManager.createQuizAutomatically(quizId, numQuestions, type, savedQuestions, quizzes);
9294
}
9395

9496
/**

0 commit comments

Comments
 (0)