forked from jmdobry/angular-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma.start.js
89 lines (82 loc) · 2.6 KB
/
karma.start.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
var fail = function (msg) {
assert.equal('should not reach this!: ' + msg, 'failure');
},
TYPES_EXCEPT_STRING = [123, 123.123, null, undefined, {}, [], true, false, function () {
}],
TYPES_EXCEPT_STRING_OR_ARRAY = [123, 123.123, null, undefined, {}, true, false, function () {
}],
TYPES_EXCEPT_STRING_OR_NUMBER = [null, undefined, {}, [], true, false, function () {
}],
TYPES_EXCEPT_STRING_OR_ARRAY_OR_NUMBER = [null, undefined, {}, true, false, function () {
}],
TYPES_EXCEPT_NUMBER = ['string', null, undefined, {}, [], true, false, function () {
}],
TYPES_EXCEPT_OBJECT = ['string', 123, 123.123, null, undefined, true, false, function () {
}],
TYPES_EXCEPT_BOOLEAN = ['string', 123, 123.123, null, undefined, {}, [], function () {
}],
TYPES_EXCEPT_FUNCTION = ['string', 123, 123.123, null, undefined, {}, [], true, false],
CACHE_DEFAULTS = {
capacity: Number.MAX_VALUE,
maxAge: Number.MAX_VALUE,
deleteOnExpire: 'none',
onExpire: null,
cacheFlushInterval: null,
recycleFreq: 1000,
storageMode: 'memory',
storageImpl: null,
disabled: false,
storagePrefix: 'ac.'
};
var app, TestCacheFactoryProvider, TestCacheFactory, $q, $rootScope, $http, $httpBackend, $resource, BinaryHeap;
app = angular.module('app', ['ngResource']);
beforeEach(module('app'));
beforeEach(module('angular-cache', function (_CacheFactoryProvider_) {
TestCacheFactoryProvider = _CacheFactoryProvider_;
}));
beforeEach(inject(function (_$resource_) {
$resource = _$resource_;
}));
beforeEach(inject(function (_CacheFactory_, _BinaryHeap_, _$q_, _$rootScope_, _$http_, _$httpBackend_) {
TestCacheFactory = _CacheFactory_;
angular.extend(TestCacheFactory.defaults, CACHE_DEFAULTS);
TestCacheFactory.destroyAll();
$q = _$q_;
$rootScope = _$rootScope_;
BinaryHeap = _BinaryHeap_;
$rootScope.$safeApply = function () {
var $scope, fn, force = false;
if (arguments.length === 1) {
var arg = arguments[0];
if (typeof arg === 'function') {
fn = arg;
} else {
$scope = arg;
}
} else {
$scope = arguments[0];
fn = arguments[1];
if (arguments.length === 3) {
force = !!arguments[2];
}
}
$scope = $scope || this;
fn = fn || function () {
};
if (force || !$scope.$$phase) {
if ($scope.$apply) {
$scope.$apply(fn);
} else {
$scope.apply(fn);
}
} else {
fn();
}
};
$http = _$http_;
$httpBackend = _$httpBackend_;
}));
afterEach(function () {
$httpBackend.verifyNoOutstandingRequest();
$httpBackend.verifyNoOutstandingExpectation();
});