-
Notifications
You must be signed in to change notification settings - Fork 350
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Plotter: Extract validation out of scoring (#1899)
## Summary: To complete server-side scoring, we are separating out validation logic from scoring logic. This PR separates that logic and associated tests for the plotter widget. Issue: LEMS-2604 ## Test plan: - Confirm checks pass - Confirm widget still works as expected Author: Myranae Reviewers: jeremywiebe, Myranae, handeyeco Required Reviewers: Approved By: jeremywiebe Checks: ✅ Publish npm snapshot (ubuntu-latest, 20.x), ✅ Check builds for changes in size (ubuntu-latest, 20.x), ✅ Lint, Typecheck, Format, and Test (ubuntu-latest, 20.x), ✅ Cypress (ubuntu-latest, 20.x), ✅ Check for .changeset entries for all changed files (ubuntu-latest, 20.x), ✅ gerald, ✅ Publish npm snapshot (ubuntu-latest, 20.x), ✅ Check builds for changes in size (ubuntu-latest, 20.x), ✅ Lint, Typecheck, Format, and Test (ubuntu-latest, 20.x), ✅ Cypress (ubuntu-latest, 20.x), ✅ Publish Storybook to Chromatic (ubuntu-latest, 20.x), ✅ Check for .changeset entries for all changed files (ubuntu-latest, 20.x), ✅ gerald Pull Request URL: #1899
- Loading branch information
Showing
7 changed files
with
107 additions
and
62 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@khanacademy/perseus": minor | ||
--- | ||
|
||
Introduces a validation function for the plotter widget (extracted from the scoring function). |
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
63 changes: 14 additions & 49 deletions
63
packages/perseus/src/widgets/plotter/score-plotter.test.ts
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 |
---|---|---|
@@ -1,75 +1,40 @@ | ||
import scorePlotter from "./score-plotter"; | ||
|
||
import type { | ||
PerseusPlotterRubric, | ||
PerseusPlotterScoringData, | ||
PerseusPlotterUserInput, | ||
} from "../../validation.types"; | ||
|
||
const baseRubric: PerseusPlotterRubric = { | ||
categories: [ | ||
"$1^{\\text{st}} \\text{}$", | ||
"$2^{\\text{nd}} \\text{}$", | ||
"$3^{\\text{rd}} \\text{}$", | ||
"$4^{\\text{th}} \\text{}$", | ||
"$5^{\\text{th}} \\text{}$", | ||
], | ||
picBoxHeight: 300, | ||
picSize: 300, | ||
picUrl: "", | ||
plotDimensions: [0, 0], | ||
correct: [15, 25, 5, 10, 10], | ||
labelInterval: 1, | ||
labels: ["School grade", "Number of absent students"], | ||
maxY: 30, | ||
scaleY: 5, | ||
snapsPerLine: 1, | ||
starting: [0, 0, 0, 0, 0], | ||
type: "bar", | ||
}; | ||
|
||
function generateRubric( | ||
extend?: Partial<PerseusPlotterRubric>, | ||
): PerseusPlotterRubric { | ||
return {...baseRubric, ...extend}; | ||
} | ||
|
||
describe("scorePlotter", () => { | ||
it("is invalid if the start and end are the same", () => { | ||
// Arrange | ||
const rubric = generateRubric(); | ||
|
||
const userInput: PerseusPlotterUserInput = rubric.starting; | ||
|
||
// Act | ||
const result = scorePlotter(userInput, rubric); | ||
|
||
// Assert | ||
expect(result).toHaveInvalidInput(); | ||
}); | ||
|
||
it("can be answered correctly", () => { | ||
// Arrange | ||
const rubric = generateRubric(); | ||
const scoringData: PerseusPlotterScoringData = { | ||
correct: [15, 25, 5, 10, 10], | ||
starting: [0, 0, 0, 0, 0], | ||
}; | ||
|
||
const userInput: PerseusPlotterUserInput = rubric.correct; | ||
const userInput: PerseusPlotterUserInput = scoringData.correct; | ||
|
||
// Act | ||
const result = scorePlotter(userInput, rubric); | ||
const score = scorePlotter(userInput, scoringData); | ||
|
||
// Assert | ||
expect(result).toHaveBeenAnsweredCorrectly(); | ||
expect(score).toHaveBeenAnsweredCorrectly(); | ||
}); | ||
|
||
it("can be answered incorrectly", () => { | ||
// Arrange | ||
const rubric = generateRubric(); | ||
const scoringData: PerseusPlotterScoringData = { | ||
correct: [15, 25, 5, 10, 10], | ||
starting: [0, 0, 0, 0, 0], | ||
}; | ||
|
||
const userInput: PerseusPlotterUserInput = [8, 6, 7, 5, 3, 0, 9]; | ||
|
||
// Act | ||
const result = scorePlotter(userInput, rubric); | ||
const score = scorePlotter(userInput, scoringData); | ||
|
||
// Assert | ||
expect(result).toHaveBeenAnsweredIncorrectly(); | ||
expect(score).toHaveBeenAnsweredIncorrectly(); | ||
}); | ||
}); |
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
38 changes: 38 additions & 0 deletions
38
packages/perseus/src/widgets/plotter/validate-plotter.test.ts
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,38 @@ | ||
import validatePlotter from "./validate-plotter"; | ||
|
||
import type { | ||
PerseusPlotterUserInput, | ||
PerseusPlotterValidationData, | ||
} from "../../validation.types"; | ||
|
||
describe("validatePlotter", () => { | ||
it("is invalid if the start and end are the same", () => { | ||
// Arrange | ||
const validationData: PerseusPlotterValidationData = { | ||
starting: [0, 0, 0, 0, 0], | ||
}; | ||
|
||
const userInput: PerseusPlotterUserInput = validationData.starting; | ||
|
||
// Act | ||
const validationError = validatePlotter(userInput, validationData); | ||
|
||
// Assert | ||
expect(validationError).toHaveInvalidInput(); | ||
}); | ||
|
||
it("returns null if the start and end are not the same and the user has modified the graph", () => { | ||
// Arrange | ||
const validationData: PerseusPlotterValidationData = { | ||
starting: [0, 0, 0, 0, 0], | ||
}; | ||
|
||
const userInput: PerseusPlotterUserInput = [0, 1, 2, 3, 4]; | ||
|
||
// Act | ||
const validationError = validatePlotter(userInput, validationData); | ||
|
||
// Assert | ||
expect(validationError).toBeNull(); | ||
}); | ||
}); |
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,30 @@ | ||
import Util from "../../util"; | ||
|
||
import type {PerseusScore} from "../../types"; | ||
import type { | ||
PerseusPlotterUserInput, | ||
PerseusPlotterValidationData, | ||
} from "../../validation.types"; | ||
|
||
const {deepEq} = Util; | ||
|
||
/** | ||
* Checks user input to confirm it is not the same as the starting values for the graph. | ||
* This means the user has modified the graph, and the question can be scored. | ||
* | ||
* @see 'scorePlotter' for more details on scoring. | ||
*/ | ||
function validatePlotter( | ||
userInput: PerseusPlotterUserInput, | ||
validationData: PerseusPlotterValidationData, | ||
): Extract<PerseusScore, {type: "invalid"}> | null { | ||
if (deepEq(userInput, validationData.starting)) { | ||
return { | ||
type: "invalid", | ||
message: null, | ||
}; | ||
} | ||
return null; | ||
} | ||
|
||
export default validatePlotter; |