GoogleOauth2.0 First implementation

First try for GoogleOauth2.0
This commit is contained in:
Georg Reisinger
2018-10-26 14:02:15 +02:00
parent 216a04e233
commit b171f1646c
1880 changed files with 912953 additions and 7 deletions

View File

@ -0,0 +1,32 @@
var template, expect, examples;
if (typeof require !== 'undefined') {
template = require('../lib/url-template.js');
expect = require("expect.js");
examples = require('../uritemplate-test/spec-examples-by-section.json');
} else {
template = window.urltemplate;
expect = window.expect;
examples = window.examples;
}
function createTestContext(c) {
return function (t, r) {
if (typeof r === 'string') {
expect(template.parse(t).expand(c)).to.eql(r);
} else {
expect(r.indexOf(template.parse(t).expand(c)) >= 0).to.be.ok();
}
};
}
describe('spec-examples', function () {
Object.keys(examples).forEach(function (section) {
var assert = createTestContext(examples[section].variables);
examples[section].testcases.forEach(function (testcase) {
it(section + ' ' + testcase[0], function () {
assert(testcase[0], testcase[1]);
});
});
});
});