summaryrefslogtreecommitdiffstats
path: root/tests/auto/installer/scriptengine/data
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/installer/scriptengine/data')
-rw-r--r--tests/auto/installer/scriptengine/data/auto-install.qs16
-rw-r--r--tests/auto/installer/scriptengine/data/component1.qs48
-rw-r--r--tests/auto/installer/scriptengine/data/component2.qs6
3 files changed, 70 insertions, 0 deletions
diff --git a/tests/auto/installer/scriptengine/data/auto-install.qs b/tests/auto/installer/scriptengine/data/auto-install.qs
new file mode 100644
index 000000000..26937fc05
--- /dev/null
+++ b/tests/auto/installer/scriptengine/data/auto-install.qs
@@ -0,0 +1,16 @@
+function Controller()
+{
+ installer.setMessageBoxAutomaticAnswer("OverwriteTargetDirectory", QMessageBox.Yes);
+ installer.setValue("GuiTestValue", "hello");
+}
+
+Controller.prototype.ComponentSelectionPageCallback = function()
+{
+ var notExistingButtonId = 9999999;
+ gui.clickButton(notExistingButtonId);
+}
+
+Controller.prototype.FinishedPageCallback = function()
+{
+ print("FinishedPageCallback - OK")
+}
diff --git a/tests/auto/installer/scriptengine/data/component1.qs b/tests/auto/installer/scriptengine/data/component1.qs
new file mode 100644
index 000000000..af81f5747
--- /dev/null
+++ b/tests/auto/installer/scriptengine/data/component1.qs
@@ -0,0 +1,48 @@
+function Component()
+{
+ print("Component constructor - OK");
+}
+
+Component.prototype.retranslateUi = function()
+{
+ // arguments.callee to get the current function name doesn't work in that case
+ print("retranslateUi - OK");
+ // no default implementation for this method
+ // component.languageChanged();
+}
+
+Component.prototype.createOperationsForPath = function(path)
+{
+ print("createOperationsForPath - OK");
+ component.createOperationsForPath(path);
+}
+
+Component.prototype.createOperationsForArchive = function(archive)
+{
+ print("createOperationsForArchive - OK");
+ component.createOperationsForArchive(archive);
+}
+
+Component.prototype.beginInstallation = function()
+{
+ print("beginInstallation - OK");
+ component.beginInstallation();
+}
+
+Component.prototype.createOperations = function()
+{
+ print("createOperations - OK");
+ component.createOperations();
+}
+
+Component.prototype.isAutoDependOn = function()
+{
+ print("isAutoDependOn - OK");
+ return false;
+}
+
+Component.prototype.isDefault = function()
+{
+ print("isDefault - OK");
+ return false;
+}
diff --git a/tests/auto/installer/scriptengine/data/component2.qs b/tests/auto/installer/scriptengine/data/component2.qs
new file mode 100644
index 000000000..b27e45c83
--- /dev/null
+++ b/tests/auto/installer/scriptengine/data/component2.qs
@@ -0,0 +1,6 @@
+function Component()
+{
+ print("script function: " + arguments.callee.name);
+ // adding some broken javascript code here
+ broken + 789634
+}