blob: ee9d4c7b6a2203013002e4caeb24e2278f2cc7d7 [file] [log] [blame]
describe("network", function () {
var network,
exec = require('cordova/exec'),
channel = require('cordova/channel');
it("should fire exec on first-run after CordovaReady fires", function() {
exec.reset();
network = require('cordova/plugin/network');
channel.onCordovaReady.fire();
expect(exec).toHaveBeenCalledWith(jasmine.any(Function), jasmine.any(Function), "NetworkStatus", "getConnectionInfo", []);
});
//TODO: There is a lot of code executed on the first require call to this plugin
// we should refactor or find a good way to call and test this code.
//
// since exec is a spy we can scrounge the list of calls to find it, but I would
// rather refactor to have something a little cleaner (maybe move this code into the init
// routine for the platform)
it("can get the network info", function () {
var success = jasmine.createSpy(),
error = jasmine.createSpy();
network.getInfo(success, error);
expect(exec).toHaveBeenCalledWith(success, error, "NetworkStatus", "getConnectionInfo", []);
});
});