Skip to content

Commit 2091330

Browse files
committed
RUN-1044: updates for Runtime V44
1 parent 1854c88 commit 2091330

File tree

7 files changed

+39
-18
lines changed

7 files changed

+39
-18
lines changed

hello-openfin-installer.exe

171 KB
Binary file not shown.

test/WD/Mocha/hello-openfin.js

+11-3
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,11 @@ describe('Hello OpenFin App testing with WD', function() {
5252
should.not.exist(err);
5353
client.title(function (err, result) {
5454
should.not.exist(err);
55-
callback(result);
55+
if (err) {
56+
callback(undefined);
57+
} else {
58+
callback(result);
59+
}
5660
});
5761
});
5862
}
@@ -118,13 +122,17 @@ describe('Hello OpenFin App testing with WD', function() {
118122
should.not.exist(err);
119123
should.exist(version);
120124
version.should.equal(config.expectedRuntimeVersion);
121-
done();
125+
// without the sleep here, sometimes the next step does not go through for some reason
126+
client.sleep(1000, function(err) {
127+
done();
128+
});
122129
});
123130
});
124131

125-
it("Click notification button", function() {
132+
it("Click notification button", function(done) {
126133
should.exist(client);
127134
client.elementByCss("#desktop-notification").click();
135+
done();
128136
});
129137

130138
it("Click CPU Info button", function(done) {

test/WebDriverIO/Mocha/hello-openfin.js

+9-4
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,12 @@ describe('Hello OpenFin App testing with webdriver.io', function() {
5151
*/
5252
function switchWindow(windowHandle, callback) {
5353
client.switchTab(windowHandle, function(err) {
54-
should.not.exist(err);
5554
client.title(function (err, result) {
56-
should.not.exist(err);
57-
callback(result.value);
55+
if (err) {
56+
callback(undefined);
57+
} else {
58+
callback(result.value);
59+
}
5860
});
5961
});
6062
}
@@ -121,7 +123,10 @@ describe('Hello OpenFin App testing with webdriver.io', function() {
121123
should.not.exist(err);
122124
should.exist(result.value);
123125
result.value.should.equal(config.expectedRuntimeVersion);
124-
done();
126+
// without the sleep here, sometimes the next step does not go through for some reason
127+
client.pause(1000, function() {
128+
done();
129+
});
125130
});
126131
});
127132

test/WebDriverJs/Mocha/hello-openfin.js

+15-7
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,10 @@ describe('Hello OpenFin App testing with selenium-webdriver', function () {
4646
client.getTitle().then(function (title) {
4747
callback(title);
4848
});
49-
});
49+
}).then(null, function(e) {
50+
// some windows get opened and closed during startup, so not really an error
51+
callback("no such window");
52+
});
5053
}
5154

5255
/**
@@ -109,7 +112,10 @@ describe('Hello OpenFin App testing with selenium-webdriver', function () {
109112
executeAsyncJavascript("var callback = arguments[arguments.length - 1];" +
110113
"fin.desktop.System.getVersion(function(v) { callback(v); } );").then(function(v) {
111114
expect(v).to.equal(config.expectedRuntimeVersion);
112-
done();
115+
// without the sleep here, sometimes the next step does not go through for some reason
116+
client.sleep(1000).then(function () {
117+
done();
118+
});
113119
});
114120
});
115121

@@ -126,7 +132,10 @@ describe('Hello OpenFin App testing with selenium-webdriver', function () {
126132
expect(client).to.exist;
127133
expect(notificationButton).to.exist;
128134
notificationButton.click().then(function () {
129-
done();
135+
// give time for notification to show up
136+
client.sleep(2000).then(function () {
137+
done();
138+
});
130139
});
131140
});
132141

@@ -143,7 +152,8 @@ describe('Hello OpenFin App testing with selenium-webdriver', function () {
143152
expect(client).to.exist;
144153
expect(cpuInfoButton).to.exist;
145154
cpuInfoButton.click().then(function () {
146-
client.sleep(3000).then(function () {
155+
// sleep here so CPU Info window stay shown for us to see
156+
client.sleep(2000).then(function () {
147157
done();
148158
});
149159
});
@@ -167,9 +177,7 @@ describe('Hello OpenFin App testing with selenium-webdriver', function () {
167177
expect(client).to.exist;
168178
expect(cpuInfoExitButton).to.exist;
169179
cpuInfoExitButton.click().then(function() {
170-
client.sleep(3000).then(function() {
171-
done();
172-
});
180+
done();
173181
});
174182
});
175183

test/config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ module.exports = (function () {
1111
chromeOptions: {
1212
extensions: [],
1313
debuggerAddress: 'localhost:9090',
14-
binary: "OpenFinRVM.exe",
14+
binary: "hello-openfin-installer.exe",
1515
args: ['--config=https://demoappdirectory.openf.in/desktop/config/apps/OpenFin/HelloOpenFin/app.json']
1616
}
1717
},
1818
remoteDriverHost: "localhost",
1919
remoteDriverPort: 9515,
2020
testTimeout: 10000,
21-
expectedRuntimeVersion: "3.0.1.5"
21+
expectedRuntimeVersion: "5.44.7.17"
2222
};
2323

2424
config.remoteDriverUrl = "http://" + config.remoteDriverHost + ":" + config.remoteDriverPort;

test/protractor/config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ exports.config = {
1313
chromeOptions: {
1414
extensions: [],
1515
debuggerAddress: 'localhost:9090',
16-
binary: "../../OpenFinRVM.exe",
16+
binary: "../../hello-openfin-installer.exe",
1717
args: ['--config=http://test.openf.in/bus/protractor.json']
1818
}
1919
},

test/protractor/hello-openfin.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ describe('OpenFin App testing with protractor', function() {
9292
expect(driver).toBeDefined();
9393
executeAsyncJavascript("var callback = arguments[arguments.length - 1];" +
9494
"fin.desktop.System.getVersion(function(v) { callback(v); } );").then(function(v) {
95-
expect(v).toEqual("3.0.1.5");
95+
expect(v).toEqual("5.44.7.17");
9696
done();
9797
});
9898
});

0 commit comments

Comments
 (0)