File size: 7,688 Bytes
5fae594 |
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 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 |
/*
Tests that calling the public api gets through correctly to the writing
correctly. streamingXhr is a stub so no actual calls are made.
Technically this tests some of instanceController.js as well as publicApi.js but the tests were
written before the logic was split into two.
*/
describe("public api", function(){
"use strict";
describe("propagates through to wiring function", function(){
beforeEach(function() {
spyOn(window, 'wire');
});
it('exports a usable function for GETs', function(){
oboe('http://example.com/oboez')
expect(wire).toHaveBeenCalledLike(
'GET',
'http://example.com/oboez'
)
})
it('can create a no-ajax instance', function(){
oboe()
expect(wire).toHaveBeenCalledLike()
})
describe('get', function(){
it('works via arguments', function(){
oboe('http://example.com/oboez')
expect(wire).toHaveBeenCalledLike(
'GET',
'http://example.com/oboez'
)
})
it('works via options object', function(){
oboe({url: 'http://example.com/oboez'})
expect(wire).toHaveBeenCalledLike(
'GET',
'http://example.com/oboez'
)
})
it('can disable caching', function(){
var time = sinon.useFakeTimers(123);
oboe({url: 'http://example.com/oboez', cached:false})
expect(wire).toHaveBeenCalledLike(
'GET',
'http://example.com/oboez?_=123'
)
time.restore();
})
it('can explicitly not disable caching', function(){
var time = sinon.useFakeTimers(123);
oboe({url: 'http://example.com/oboez', cached:true})
expect(wire).toHaveBeenCalledLike(
'GET',
'http://example.com/oboez'
)
time.restore();
})
it('can disable caching if url already has query param', function(){
var time = sinon.useFakeTimers(123);
spyOn(Date, 'now').andReturn(123);
oboe({url: 'http://example.com/oboez?foo=bar', cached:false})
expect(wire).toHaveBeenCalledLike(
'GET',
'http://example.com/oboez?foo=bar&_=123'
)
time.restore();
})
it('propogates headers', function(){
var headers = {'X-HEADER-1':'value1', 'X-HEADER-2':'value2'};
oboe({url: 'http://example.com/oboez',
method:'GET',
headers:headers})
expect(wire).toHaveBeenCalledLike(
'GET',
'http://example.com/oboez',
undefined,
headers
)
})
});
describe('delete', function(){
it('works via options object', function(){
oboe({url: 'http://example.com/oboez',
method: 'DELETE'})
expect(wire).toHaveBeenCalledLike(
'DELETE',
'http://example.com/oboez'
)
})
});
describe('post', function(){
it('can post an object', function(){
oboe({ method:'POST',
url:'http://example.com/oboez',
body:[1,2,3,4,5]
})
expect(wire).toHaveBeenCalledLike(
'POST',
'http://example.com/oboez',
[1,2,3,4,5]
)
})
it('can post a string', function(){
oboe({ method:'POST',
url:'http://example.com/oboez',
body:'my_data'
})
expect(wire).toHaveBeenCalledLike(
'POST',
'http://example.com/oboez',
'my_data'
)
})
});
describe('put', function(){
it('can put a string', function(){
oboe({ method:'PUT',
url:'http://example.com/oboez',
'body':'my_data'})
expect(wire).toHaveBeenCalledLike(
'PUT',
'http://example.com/oboez',
'my_data'
)
})
});
describe('patch', function(){
it('can patch a string', function(){
oboe({url:'http://example.com/oboez',
body:'my_data',
method:'PATCH'});
expect(wire).toHaveBeenCalledLike(
'PATCH',
'http://example.com/oboez',
'my_data'
)
})
})
});
this.beforeEach(function(){
this.addMatchers({
/* Under Jasmine's toHaveBeenCalledLike, subject(foo, undefined)
is considered different from subject(foo). This is slightly
looser and considers those equal.
*/
toHaveBeenCalledLike:function(/*expectedArgs*/){
var expectedArgs = Array.prototype.slice.apply(arguments);
var actualCalls = this.actual.calls;
var equals = this.env.equals_.bind(this.env);
this.message = function() {
var invertedMessage = "Expected spy " + this.actual.identity + " not to have been called like " + jasmine.pp(expectedArgs) + " but it was.";
var positiveMessage = "";
if (this.actual.callCount === 0) {
positiveMessage = "Expected spy " + this.actual.identity + " to have been called like " + jasmine.pp(expectedArgs) + " but it was never called.";
} else {
positiveMessage = "Expected spy " + this.actual.identity + " to have been called like " + jasmine.pp(expectedArgs) + " but actual calls were " + jasmine.pp(this.actual.argsForCall).replace(/^\[ | \]$/g, '')
}
return [positiveMessage, invertedMessage];
};
return actualCalls.some(function( actualCall ){
var actualArgs = actualCall.args;
// check for one too many arguments given. But this is ok
// if the extra arg is undefined.
if( actualArgs[expectedArgs.length] != undefined ) {
return false;
}
return expectedArgs.every(function( expectedArg, index ){
return equals( actualArgs[index], expectedArg );
});
});
}
});
})
});
|