From 2d488d995b973a11b80103425ee210482160d80b Mon Sep 17 00:00:00 2001
From: Ben Wheeler <wheeler.benjamin@gmail.com>
Date: Tue, 25 Feb 2020 18:05:13 -0500
Subject: [PATCH] added sb-file-uploader-hoc test

---
 test/integration/sb-file-uploader-hoc.test.js | 45 +++++++++++++++++++
 1 file changed, 45 insertions(+)
 create mode 100644 test/integration/sb-file-uploader-hoc.test.js

diff --git a/test/integration/sb-file-uploader-hoc.test.js b/test/integration/sb-file-uploader-hoc.test.js
new file mode 100644
index 000000000..bf293c7b5
--- /dev/null
+++ b/test/integration/sb-file-uploader-hoc.test.js
@@ -0,0 +1,45 @@
+import path from 'path';
+import SeleniumHelper from '../helpers/selenium-helper';
+
+const {
+    clickText,
+    clickXpath,
+    findByText,
+    findByXpath,
+    getDriver,
+    loadUri
+} = new SeleniumHelper();
+
+const uri = path.resolve(__dirname, '../../build/index.html');
+
+let driver;
+
+describe('Loading scratch gui', () => {
+    beforeAll(() => {
+        driver = getDriver();
+    });
+
+    afterAll(async () => {
+        await driver.quit();
+    });
+
+    test('Loading project file from computer succeeds, without opening failure alert', async () => {
+        await loadUri(uri);
+        await clickText('File');
+        await clickText('Load from your computer');
+        const input = await findByXpath('//input[@accept=".sb,.sb2,.sb3"]');
+        await input.sendKeys(path.resolve(__dirname, '../fixtures/project1.sb3'));
+        await findByText('project1-sprite');
+        // this test will fail if an alert appears, e.g. in SBFileUploaderHOC's onload() function
+    });
+
+    test('Loading project file from computer gives project the filename from file', async () => {
+        await loadUri(uri);
+        await clickText('File');
+        await clickText('Load from your computer');
+        const input = await findByXpath('//input[@accept=".sb,.sb2,.sb3"]');
+        await input.sendKeys(path.resolve(__dirname, '../fixtures/project1.sb3'));
+        await findByText('project1-sprite');
+        await clickXpath('//input[@value="project1"]');
+    });
+});
-- 
GitLab