2023-08-21 17:32:09 +02:00
|
|
|
import { describe, test, expect } from "vitest";
|
|
|
|
import { parseIngredientText } from "./use-recipe-ingredients";
|
|
|
|
import { RecipeIngredient } from "~/lib/api/types/recipe";
|
|
|
|
|
|
|
|
describe(parseIngredientText.name, () => {
|
|
|
|
const createRecipeIngredient = (overrides: Partial<RecipeIngredient>): RecipeIngredient => ({
|
|
|
|
quantity: 1,
|
|
|
|
food: {
|
|
|
|
id: "1",
|
|
|
|
name: "Item 1",
|
|
|
|
},
|
|
|
|
unit: {
|
|
|
|
id: "1",
|
|
|
|
name: "cup",
|
|
|
|
},
|
|
|
|
...overrides,
|
|
|
|
});
|
|
|
|
|
|
|
|
test("uses ingredient note if disableAmount: true", () => {
|
|
|
|
const ingredient = createRecipeIngredient({ note: "foo" });
|
|
|
|
|
|
|
|
expect(parseIngredientText(ingredient, true)).toEqual("foo");
|
|
|
|
});
|
|
|
|
|
|
|
|
test("adds note section if note present", () => {
|
|
|
|
const ingredient = createRecipeIngredient({ note: "custom note" });
|
|
|
|
|
|
|
|
expect(parseIngredientText(ingredient, false)).toContain("custom note");
|
|
|
|
});
|
|
|
|
|
|
|
|
test("ingredient text with fraction", () => {
|
|
|
|
const ingredient = createRecipeIngredient({ quantity: 1.5, unit: { fraction: true, id: "1", name: "cup" } });
|
|
|
|
|
2023-08-31 12:08:44 -05:00
|
|
|
expect(parseIngredientText(ingredient, false, 1, true)).contain("1 <sup>1</sup>").and.to.contain("<sub>2</sub>");
|
|
|
|
});
|
|
|
|
|
|
|
|
test("ingredient text with fraction no formatting", () => {
|
|
|
|
const ingredient = createRecipeIngredient({ quantity: 1.5, unit: { fraction: true, id: "1", name: "cup" } });
|
|
|
|
const result = parseIngredientText(ingredient, false, 1, false);
|
|
|
|
|
|
|
|
expect(result).not.contain("<");
|
|
|
|
expect(result).not.contain(">");
|
|
|
|
expect(result).contain("1 1/2");
|
2023-08-21 17:32:09 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
test("sanitizes html", () => {
|
|
|
|
const ingredient = createRecipeIngredient({ note: "<script>alert('foo')</script>" });
|
|
|
|
|
|
|
|
expect(parseIngredientText(ingredient, false)).not.toContain("<script>");
|
|
|
|
});
|
|
|
|
});
|