SQL Operations Studio Public Preview 1 (0.23) release source code

This commit is contained in:
Karl Burtram
2017-11-09 14:30:27 -08:00
parent b88ecb8d93
commit 3cdac41339
8829 changed files with 759707 additions and 286 deletions

View File

@@ -0,0 +1,92 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
'use strict';
import * as assert from 'assert';
import URI from 'vs/base/common/uri';
function assertUrl(raw: string, scheme: string, domain: string, port: string, path: string, queryString: string, fragmentId: string): void {
// check for equivalent behaviour
const uri = URI.parse(raw);
assert.equal(uri.scheme, scheme);
assert.equal(uri.authority, port ? domain + ':' + port : domain);
assert.equal(uri.path, path);
assert.equal(uri.query, queryString);
assert.equal(uri.fragment, fragmentId);
}
suite('Network', () => {
test('urls', () => {
assertUrl('http://www.test.com:8000/this/that/theother.html?query=foo#hash',
'http', 'www.test.com', '8000', '/this/that/theother.html', 'query=foo', 'hash'
);
assertUrl('http://www.test.com:8000/this/that/theother.html?query=foo',
'http', 'www.test.com', '8000', '/this/that/theother.html', 'query=foo', ''
);
assertUrl('http://www.test.com:8000/this/that/theother.html#hash',
'http', 'www.test.com', '8000', '/this/that/theother.html', '', 'hash'
);
assertUrl('http://www.test.com:8000/#hash',
'http', 'www.test.com', '8000', '/', '', 'hash'
);
assertUrl('http://www.test.com:8000#hash',
'http', 'www.test.com', '8000', '', '', 'hash'
);
assertUrl('http://www.test.com/#hash',
'http', 'www.test.com', '', '/', '', 'hash'
);
assertUrl('http://www.test.com#hash',
'http', 'www.test.com', '', '', '', 'hash'
);
assertUrl('http://www.test.com:8000/this/that/theother.html',
'http', 'www.test.com', '8000', '/this/that/theother.html', '', ''
);
assertUrl('http://www.test.com:8000/',
'http', 'www.test.com', '8000', '/', '', ''
);
assertUrl('http://www.test.com:8000',
'http', 'www.test.com', '8000', '', '', ''
);
assertUrl('http://www.test.com/',
'http', 'www.test.com', '', '/', '', ''
);
assertUrl('//www.test.com/',
'', 'www.test.com', '', '/', '', ''
);
assertUrl('//www.test.com:8000/this/that/theother.html?query=foo#hash',
'', 'www.test.com', '8000', '/this/that/theother.html', 'query=foo', 'hash'
);
assertUrl('//www.test.com/this/that/theother.html?query=foo#hash',
'', 'www.test.com', '', '/this/that/theother.html', 'query=foo', 'hash'
);
assertUrl('https://www.test.com:8000/this/that/theother.html?query=foo#hash',
'https', 'www.test.com', '8000', '/this/that/theother.html', 'query=foo', 'hash'
);
assertUrl('f12://www.test.com:8000/this/that/theother.html?query=foo#hash',
'f12', 'www.test.com', '8000', '/this/that/theother.html', 'query=foo', 'hash'
);
assertUrl('inmemory://model/0',
'inmemory', 'model', '', '/0', '', ''
);
assertUrl('file:///c/far/boo/file.cs', 'file', '', '', '/c/far/boo/file.cs', '', '');
});
});