forked from hhursev/recipe-scrapers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_cookpad.py
56 lines (45 loc) · 2.54 KB
/
test_cookpad.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from recipe_scrapers.cookpad import CookPad
from tests import ScraperTest
class TestCookPadScraper(ScraperTest):
scraper_class = CookPad
def test_host(self):
self.assertEqual("cookpad.com", self.harvester_class.host())
def test_canonical_url(self):
self.assertEqual(
"https://cookpad.com/recipe/4610651", self.harvester_class.canonical_url()
)
def test_title(self):
self.assertEqual(self.harvester_class.title(), "30分で簡単♡本格バターチキンカレー♡")
def test_author(self):
self.assertEqual(self.harvester_class.author(), "reoririna")
def test_yields(self):
self.assertEqual("4 servings", self.harvester_class.yields())
def test_image(self):
self.assertEqual(
"https://img.cpcdn.com/recipes/4610651/640x640c/6de3ac788480ce2787e5e39714ef0856?u=6992401&p=1519025894",
self.harvester_class.image(),
)
def test_ingredients(self):
self.assertEqual(
[
"♥鶏モモ肉 500g前後",
"♥玉ねぎ 2個",
"♥にんにくチューブ 5cm",
"♥生姜チューブ 5cm(なくても♡)",
"♥カレー粉 大さじ1と1/2",
"♥バター 大さじ2+大さじ3(60g)",
"*トマト缶 1缶",
"*コンソメ 小さじ1",
"*塩 小さじ(1〜)2弱",
"*砂糖 小さじ2",
"*水 100ml",
"*ケチャップ 大さじ1",
"♥生クリーム 100ml",
],
self.harvester_class.ingredients(),
)
def test_instructions(self):
return self.assertEqual(
"鶏モモ肉 は一口大に、 玉ねぎ は薄切り(orみじん切り)にします♪\nフライパンに バター(大さじ2) を熱し、鶏肉 に 塩胡椒 をふり表面をこんがり焼きます♪\nお鍋に バター(大さじ3) にんにくチューブ 生姜チューブ 玉ねぎ を入れてあめ色になるまでじっくり炒めます♪\nカレー粉 を加えて弱火で3分くらい炒めます♪\n* と 鶏肉(油分も) を加えて沸騰したら火が通るまで(10分程)煮ます♪\n仕上げに 生クリーム を加えて混ぜ、温まったらすぐ火を止めます♪ 完成♡♡ 更に仕上げに生クリームをトッピングしました♡\n子供ごはんはこんな感じの盛り付けに♡♥",
self.harvester_class.instructions(),
)