-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathInterpreter.e2e.test.js
105 lines (79 loc) · 3.69 KB
/
Interpreter.e2e.test.js
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
import React from "react"
import renderer from "react-test-renderer"
import puppeteer from "puppeteer"
const sleep = (milliseconds) => {
const timestamp = Date.now() + milliseconds
while (timestamp > Date.now()) {
//
}
}
const runIcon = "#arduino_simulator_start_icon"
const stopIcon = "#arduino_simulator_stop_icon"
const pinDigital0 =
"#root > div:nth-child(4) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2)"
const pinAnalog0 =
"#root > div:nth-child(4) > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2)"
const serialInput =
"#root > div:nth-child(4) > div:nth-child(3) > div:nth-child(2) > input:nth-child(1)"
const serialSubmit =
"#root > div:nth-child(4) > div:nth-child(3) > div:nth-child(2) > input:nth-child(2)"
const serialOutputData =
"#root > div:nth-child(4) > div:nth-child(3) > div:nth-child(3) > div:nth-child(1)"
describe("Interpreter End-To-End", () => {
let browser
let page
beforeAll(async () => {
browser = await puppeteer.launch({ headless: "new" })
page = await browser.newPage()
page.setUserAgent("test-agent")
await page.evaluateOnNewDocument(() => {
Object.defineProperty(navigator, "language", {
get: function () {
return "en-US"
},
})
window.DEFAULT_SKETCH =
'/*\n\nArduino Simulator developed by LRusso.com\n\n*/\n\nint LED_PIN = 0;\nint DCMOTOR_PIN = 0;\nchar charOne[] = "Char 1 example.";\nString stringOne = "String 1 example.";\nString stringTwo = String("String 2 example.");\nString stringThree = String(15);\nString stringFour = String(15.50);\n\nvoid setup()\n\t{\n\tSerial.begin(9600);\n\tSerial.println(charOne);\n\tSerial.println(stringOne);\n\tSerial.println(stringTwo);\n\tSerial.println(stringThree);\n\tSerial.println(stringFour);\n\tSerial.println("------------------");\n\tSerial.println("Write something in the textbox above to test that this sketch sends the serial data to the Arduino board and back to the Serial Monitor.");\n\tpinMode(LED_PIN, OUTPUT);\n\tpinMode(DCMOTOR_PIN, OUTPUT);\n\tdelay(5000);\n\tdigitalWrite(LED_PIN, HIGH);\n\tanalogWrite(DCMOTOR_PIN, 255);\n\t}\n\nvoid loop()\n\t{\n\twhile(Serial.available()>0)\n\t\t{\n\t\tchar receivedChar = Serial.read();\n\t\tSerial.print(receivedChar);\n\t\t}\n\t}'
})
try {
await page.goto("http://localhost:3000")
} catch (err) {
throw Error("Please run 'npm run start' first.")
}
})
test("Running a Sketch and checking the Digital Pin 0", async () => {
await page.waitForSelector(runIcon)
sleep(5000)
await page.click(runIcon)
await page.waitForSelector(stopIcon)
sleep(7000)
const digitalPinStatus = await page.$eval(
pinDigital0,
(el) => el.style.backgroundColor
)
expect(digitalPinStatus).toBe("green")
})
test("Checking the Analog Pin 0", async () => {
const analogPinStatus = await page.$eval(pinAnalog0, (el) => el.innerText)
expect(analogPinStatus).toBe("255")
})
test("Reading the Serial data", async () => {
sleep(5000)
const serialData = await page.$eval(serialOutputData, (el) => el.innerText)
sleep(200)
const tree = renderer.create(<>{serialData}</>).toJSON()
expect(tree).toMatchSnapshot()
})
test("Inputting Serial data, sending the data to the Interpreter and reading it back on the Serial Monitor", async () => {
sleep(200)
await page.focus(serialInput)
await page.keyboard.type("This is a test")
sleep(2000)
await page.click(serialSubmit)
sleep(5000)
const serialData = await page.$eval(serialOutputData, (el) => el.innerText)
sleep(200)
expect(serialData).toContain("This is a test")
})
afterAll(() => browser.close())
})