new cordova plugins
This commit is contained in:
31
cordova/plugins/cordova-plugin-device/tests/plugin.xml
Normal file
31
cordova/plugins/cordova-plugin-device/tests/plugin.xml
Normal file
@@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
Licensed to the Apache Software Foundation (ASF) under one
|
||||
or more contributor license agreements. See the NOTICE file
|
||||
distributed with this work for additional information
|
||||
regarding copyright ownership. The ASF licenses this file
|
||||
to you 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.
|
||||
-->
|
||||
|
||||
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
||||
xmlns:rim="http://www.blackberry.com/ns/widgets"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
id="cordova-plugin-device-tests"
|
||||
version="1.1.0">
|
||||
<name>Cordova Device Plugin Tests</name>
|
||||
<license>Apache 2.0</license>
|
||||
|
||||
<js-module src="tests.js" name="tests">
|
||||
</js-module>
|
||||
</plugin>
|
111
cordova/plugins/cordova-plugin-device/tests/tests.js
vendored
Normal file
111
cordova/plugins/cordova-plugin-device/tests/tests.js
vendored
Normal file
@@ -0,0 +1,111 @@
|
||||
/*
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one
|
||||
* or more contributor license agreements. See the NOTICE file
|
||||
* distributed with this work for additional information
|
||||
* regarding copyright ownership. The ASF licenses this file
|
||||
* to you 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.
|
||||
*
|
||||
*/
|
||||
|
||||
exports.defineAutoTests = function() {
|
||||
describe('Device Information (window.device)', function () {
|
||||
it("should exist", function() {
|
||||
expect(window.device).toBeDefined();
|
||||
});
|
||||
|
||||
it("should contain a platform specification that is a string", function() {
|
||||
expect(window.device.platform).toBeDefined();
|
||||
expect((new String(window.device.platform)).length > 0).toBe(true);
|
||||
});
|
||||
|
||||
it("should contain a version specification that is a string", function() {
|
||||
expect(window.device.version).toBeDefined();
|
||||
expect((new String(window.device.version)).length > 0).toBe(true);
|
||||
});
|
||||
|
||||
it("should contain a UUID specification that is a string or a number", function() {
|
||||
expect(window.device.uuid).toBeDefined();
|
||||
if (typeof window.device.uuid == 'string' || typeof window.device.uuid == 'object') {
|
||||
expect((new String(window.device.uuid)).length > 0).toBe(true);
|
||||
} else {
|
||||
expect(window.device.uuid > 0).toBe(true);
|
||||
}
|
||||
});
|
||||
|
||||
it("should contain a cordova specification that is a string", function() {
|
||||
expect(window.device.cordova).toBeDefined();
|
||||
expect((new String(window.device.cordova)).length > 0).toBe(true);
|
||||
});
|
||||
|
||||
it("should depend on the presence of cordova.version string", function() {
|
||||
expect(window.cordova.version).toBeDefined();
|
||||
expect((new String(window.cordova.version)).length > 0).toBe(true);
|
||||
});
|
||||
|
||||
it("should contain device.cordova equal to cordova.version", function() {
|
||||
expect(window.device.cordova).toBe(window.cordova.version);
|
||||
});
|
||||
|
||||
it("should contain a model specification that is a string", function() {
|
||||
expect(window.device.model).toBeDefined();
|
||||
expect((new String(window.device.model)).length > 0).toBe(true);
|
||||
});
|
||||
|
||||
it("should contain a manufacturer property that is a string", function() {
|
||||
expect(window.device.manufacturer).toBeDefined();
|
||||
expect((new String(window.device.manufacturer)).length > 0).toBe(true);
|
||||
});
|
||||
|
||||
it("should contain an isVirtual property that is a boolean", function() {
|
||||
expect(window.device.isVirtual).toBeDefined();
|
||||
expect(typeof window.device.isVirtual).toBe("boolean");
|
||||
});
|
||||
|
||||
it("should contain a serial number specification that is a string", function() {
|
||||
expect(window.device.serial).toBeDefined();
|
||||
expect((new String(window.device.serial)).length > 0).toBe(true);
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
};
|
||||
|
||||
exports.defineManualTests = function(contentEl, createActionButton) {
|
||||
var logMessage = function (message, color) {
|
||||
var log = document.getElementById('info');
|
||||
var logLine = document.createElement('div');
|
||||
if (color) {
|
||||
logLine.style.color = color;
|
||||
}
|
||||
logLine.innerHTML = message;
|
||||
log.appendChild(logLine);
|
||||
}
|
||||
|
||||
var clearLog = function () {
|
||||
var log = document.getElementById('info');
|
||||
log.innerHTML = '';
|
||||
}
|
||||
|
||||
var device_tests = '<h3>Press Dump Device button to get device information</h3>' +
|
||||
'<div id="dump_device"></div>' +
|
||||
'Expected result: Status box will get updated with device info. (i.e. platform, version, uuid, model, etc)';
|
||||
|
||||
contentEl.innerHTML = '<div id="info"></div>' + device_tests;
|
||||
|
||||
createActionButton('Dump device', function() {
|
||||
clearLog();
|
||||
logMessage(JSON.stringify(window.device, null, '\t'));
|
||||
}, "dump_device");
|
||||
};
|
Reference in New Issue
Block a user