Files
Peter Bacon Darwin 49aba51e6b feat(Module): add info() method
The new `info()` method lets developers store arbitrary information about
their module for consumption later.

Closes #15225
2017-03-02 08:22:08 +00:00

191 lines
5.9 KiB
JavaScript

'use strict';
describe('module loader', function() {
var window;
beforeEach(function() {
window = {};
setupModuleLoader(window);
});
it('should set up namespace', function() {
expect(window.angular).toBeDefined();
expect(window.angular.module).toBeDefined();
});
it('should not override existing namespace', function() {
var angular = window.angular;
var module = angular.module;
setupModuleLoader(window);
expect(window.angular).toBe(angular);
expect(window.angular.module).toBe(module);
});
it('should record calls', function() {
var otherModule = window.angular.module('other', []);
otherModule.config('otherInit');
var myModule = window.angular.module('my', ['other'], 'config');
expect(myModule.
decorator('dk', 'dv').
provider('sk', 'sv').
factory('fk', 'fv').
service('a', 'aa').
value('k', 'v').
filter('f', 'ff').
directive('d', 'dd').
component('c', 'cc').
controller('ctrl', 'ccc').
config('init2').
constant('abc', 123).
run('runBlock')).toBe(myModule);
expect(myModule.requires).toEqual(['other']);
expect(myModule._invokeQueue).toEqual([
['$provide', 'constant', jasmine.objectContaining(['abc', 123])],
['$provide', 'provider', jasmine.objectContaining(['sk', 'sv'])],
['$provide', 'factory', jasmine.objectContaining(['fk', 'fv'])],
['$provide', 'service', jasmine.objectContaining(['a', 'aa'])],
['$provide', 'value', jasmine.objectContaining(['k', 'v'])],
['$filterProvider', 'register', jasmine.objectContaining(['f', 'ff'])],
['$compileProvider', 'directive', jasmine.objectContaining(['d', 'dd'])],
['$compileProvider', 'component', jasmine.objectContaining(['c', 'cc'])],
['$controllerProvider', 'register', jasmine.objectContaining(['ctrl', 'ccc'])]
]);
expect(myModule._configBlocks).toEqual([
['$injector', 'invoke', jasmine.objectContaining(['config'])],
['$provide', 'decorator', jasmine.objectContaining(['dk', 'dv'])],
['$injector', 'invoke', jasmine.objectContaining(['init2'])]
]);
expect(myModule._runBlocks).toEqual(['runBlock']);
});
it('should not throw error when `module.decorator` is declared before provider that it decorates', function() {
angular.module('theModule', []).
decorator('theProvider', function($delegate) { return $delegate; }).
factory('theProvider', function() { return {}; });
expect(function() {
createInjector(['theModule']);
}).not.toThrow();
});
it('should run decorators in order of declaration, even when mixed with provider.decorator', function() {
var log = '';
angular.module('theModule', [])
.factory('theProvider', function() {
return {api: 'provider'};
})
.decorator('theProvider', function($delegate) {
$delegate.api = $delegate.api + '-first';
return $delegate;
})
.config(function($provide) {
$provide.decorator('theProvider', function($delegate) {
$delegate.api = $delegate.api + '-second';
return $delegate;
});
})
.decorator('theProvider', function($delegate) {
$delegate.api = $delegate.api + '-third';
return $delegate;
})
.run(function(theProvider) {
log = theProvider.api;
});
createInjector(['theModule']);
expect(log).toBe('provider-first-second-third');
});
it('should decorate the last declared provider if multiple have been declared', function() {
var log = '';
angular.module('theModule', []).
factory('theProvider', function() {
return {
api: 'firstProvider'
};
}).
decorator('theProvider', function($delegate) {
$delegate.api = $delegate.api + '-decorator';
return $delegate;
}).
factory('theProvider', function() {
return {
api: 'secondProvider'
};
}).
run(function(theProvider) {
log = theProvider.api;
});
createInjector(['theModule']);
expect(log).toBe('secondProvider-decorator');
});
it('should allow module redefinition', function() {
expect(window.angular.module('a', [])).not.toBe(window.angular.module('a', []));
});
it('should complain of no module', function() {
expect(function() {
window.angular.module('dontExist');
}).toThrowMinErr('$injector', 'nomod', 'Module \'dontExist\' is not available! You either misspelled the module name ' +
'or forgot to load it. If registering a module ensure that you specify the dependencies as the second ' +
'argument.');
});
it('should complain if a module is called "hasOwnProperty', function() {
expect(function() {
window.angular.module('hasOwnProperty', []);
}).toThrowMinErr('ng','badname', 'hasOwnProperty is not a valid module name');
});
it('should expose `$$minErr` on the `angular` object', function() {
expect(window.angular.$$minErr).toEqual(jasmine.any(Function));
});
describe('Module', function() {
describe('info()', function() {
var theModule;
beforeEach(function() {
theModule = angular.module('theModule', []);
});
it('should default to an empty object', function() {
expect(theModule.info()).toEqual({});
});
it('should store the object passed as a param', function() {
theModule.info({ version: '1.2' });
expect(theModule.info()).toEqual({ version: '1.2' });
});
it('should throw if the parameter is not an object', function() {
expect(function() {
theModule.info('some text');
}).toThrowMinErr('ng', 'aobj');
});
it('should completely replace the previous info object', function() {
theModule.info({ value: 'X' });
theModule.info({ newValue: 'Y' });
expect(theModule.info()).toEqual({ newValue: 'Y' });
});
});
});
});