blob: 68feb3535bc097046f30e7ce78035a9a8bc2ef86 [file] [log] [blame]
// Copyright 2015 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
@TestOn("vm")
library webdriver.io_test;
import 'dart:io' show FileSystemEntity, Platform;
import 'package:path/path.dart' as path;
import 'package:test/test.dart';
import 'package:webdriver/io.dart'
show WebDriver, Capabilities, createDriver, fromExistingSession;
import 'src/alert.dart' as alert;
import 'src/keyboard.dart' as keyboard;
import 'src/logs.dart' as logs;
import 'src/mouse.dart' as mouse;
import 'src/navigation.dart' as navigation;
import 'src/options.dart' as options;
import 'src/target_locator.dart' as target_locator;
import 'src/web_driver.dart' as web_driver;
import 'src/web_element.dart' as web_element;
import 'src/window.dart' as window;
import 'test_util.dart' as test_util;
void main() {
test_util.runningOnTravis = Platform.environment['TRAVIS'] == 'true';
test_util.createTestDriver = ({Map additionalCapabilities}) {
Map capabilities = Capabilities.chrome;
Map env = Platform.environment;
Map chromeOptions = {};
if (env['CHROMEDRIVER_BINARY'] != null) {
chromeOptions['binary'] = env['CHROMEDRIVER_BINARY'];
}
if (env['CHROMEDRIVER_ARGS'] != null) {
chromeOptions['args'] = env['CHROMEDRIVER_ARGS'].split(' ');
}
if (chromeOptions.isNotEmpty) {
capabilities['chromeOptions'] = chromeOptions;
}
if (additionalCapabilities != null) {
capabilities.addAll(additionalCapabilities);
}
return createDriver(desired: capabilities);
};
var testPagePath = path.join(path.current, 'test', 'test_page.html');
testPagePath = path.absolute(testPagePath);
if (!FileSystemEntity.isFileSync(testPagePath)) {
throw new Exception('Could not find the test file at "$testPagePath".'
' Make sure you are running tests from the root of the project.');
}
test_util.testPagePath = path.toUri(testPagePath).toString();
group('io-specific tests', () {
WebDriver driver;
setUp(() async {
driver = await test_util.createTestDriver();
await driver.get(test_util.testPagePath);
});
tearDown(() => driver.quit());
test('fromExistingSession', () async {
WebDriver newDriver =
await fromExistingSession(driver.id, uri: driver.uri);
expect(newDriver.capabilities, driver.capabilities);
var url = await newDriver.currentUrl;
expect(url, startsWith('file:'));
expect(url, endsWith('test_page.html'));
await newDriver.get('http://www.google.com/ncr');
url = await driver.currentUrl;
expect(url, contains('www.google.com'));
});
});
alert.runTests();
keyboard.runTests();
logs.runTests();
mouse.runTests();
navigation.runTests();
options.runTests();
target_locator.runTests();
web_driver.runTests();
web_element.runTests();
window.runTests();
}