TypeScript/tests/webTestServer.ts

770 lines
27 KiB
TypeScript
Raw Normal View History

/// <reference types="node" />
2014-07-13 01:04:16 +02:00
import http = require("http");
import fs = require("fs");
import path = require("path");
import url = require("url");
2017-10-20 02:48:13 +02:00
import URL = url.URL;
2014-07-13 01:04:16 +02:00
import child_process = require("child_process");
import os = require("os");
2017-10-20 02:48:13 +02:00
import crypto = require("crypto");
2014-07-13 01:04:16 +02:00
2017-10-20 02:48:13 +02:00
const port = 8888; // harness.ts and webTestResults.html depend on this exact port number.
const baseUrl = new URL(`http://localhost:8888/`);
const rootDir = path.dirname(__dirname);
const useCaseSensitiveFileNames = isFileSystemCaseSensitive();
let browser = "IE";
let grep: string | undefined;
let verbose = false;
2014-07-13 01:04:16 +02:00
2017-10-20 02:48:13 +02:00
interface HttpContent {
headers: any;
content: string;
2014-07-13 01:04:16 +02:00
}
2017-10-20 02:48:13 +02:00
namespace HttpContent {
export function create(headers: object = {}, content?: string) {
return { headers, content };
}
export function clone(content: HttpContent): HttpContent {
return content && create(HttpHeaders.clone(content.headers), content.content);
}
export function forMediaType(mediaType: string | string[], content: string): HttpContent {
return create({ "Content-Type": mediaType, "Content-Length": Buffer.byteLength(content, "utf8") }, content);
}
export function text(content: string): HttpContent {
return forMediaType("text/plain", content);
}
export function json(content: any): HttpContent {
return forMediaType("application/json", JSON.stringify(content));
}
2014-07-13 01:04:16 +02:00
}
2017-10-20 02:48:13 +02:00
namespace HttpHeaders {
export function clone(headers: http.OutgoingHttpHeaders) {
return { ...headers };
}
2014-07-13 01:04:16 +02:00
2017-10-20 02:48:13 +02:00
export function getCacheControl(headers: http.IncomingHttpHeaders | http.OutgoingHttpHeaders) {
let cacheControl = headers["Cache-Control"];
let noCache = false;
let noStore = false;
let maxAge: number = undefined;
let maxStale: number = undefined;
let minFresh: number = undefined;
if (typeof cacheControl === "string") cacheControl = [cacheControl];
if (Array.isArray(cacheControl)) {
for (const directive of cacheControl) {
if (directive === "no-cache") noCache = true;
else if (directive === "no-store") noStore = true;
else if (directive === "max-stale") maxStale = Infinity;
else if (/^no-cache=/.test(directive)) noCache = true;
else if (/^max-age=/.test(directive)) maxAge = +directive.slice(8).trim();
else if (/^min-fresh=/.test(directive)) minFresh = +directive.slice(10).trim();
else if (/^max-stale=/.test(directive)) maxStale = +directive.slice(10).trim();
}
}
return { noCache, noStore, maxAge, maxStale, minFresh };
}
export function getExpires(headers: http.IncomingHttpHeaders | http.OutgoingHttpHeaders) {
const expires = headers["Expires"];
if (typeof expires !== "string") return Infinity;
return new Date(expires).getTime();
2014-07-13 01:04:16 +02:00
}
2017-10-20 02:48:13 +02:00
export function getIfConditions(headers: http.IncomingHttpHeaders): { ifMatch: "*" | string[], ifNoneMatch: "*" | string[], ifModifiedSince: Date, ifUnmodifiedSince: Date } {
const ifMatch = toMatch(headers["If-Match"]);
const ifNoneMatch = toMatch(headers["If-None-Match"]);
const ifModifiedSince = toDate(headers["If-Modified-Since"]);
const ifUnmodifiedSince = toDate(headers["If-Unmodified-Since"]);
return { ifMatch, ifNoneMatch, ifModifiedSince, ifUnmodifiedSince };
function toMatch(value: string | string[]) {
return typeof value === "string" && value !== "*" ? [value] : value;
}
function toDate(value: string | string[]) {
return value ? new Date(Array.isArray(value) ? value[0] : value) : undefined;
}
}
export function combine(left: http.OutgoingHttpHeaders, right: http.OutgoingHttpHeaders) {
return left && right ? { ...left, ...right } :
left ? { ...left } :
right ? { ...right } :
{};
}
}
interface HttpRequestMessage {
url: url.URL;
method: string;
headers: http.IncomingHttpHeaders;
content?: HttpContent;
file?: string;
stats?: fs.Stats;
2014-07-13 01:04:16 +02:00
}
2017-10-20 02:48:13 +02:00
namespace HttpRequestMessage {
export function create(method: string, url: URL | string, headers: http.IncomingHttpHeaders, content?: HttpContent) {
return { method, url: typeof url === "string" ? new URL(url, baseUrl) : url, headers, content };
}
2014-07-13 01:04:16 +02:00
2017-10-20 02:48:13 +02:00
export function getFile(message: HttpRequestMessage) {
return message.file || (message.file = path.join(rootDir, decodeURIComponent(message.url.pathname)));
}
export function getStats(message: HttpRequestMessage, throwErrors?: boolean) {
return message.stats || (message.stats = throwErrors ? fs.statSync(getFile(message)) : tryStat(getFile(message)));
}
export function readRequest(req: http.ServerRequest) {
return new Promise<HttpRequestMessage>((resolve, reject) => {
let entityData: string | undefined;
req.setEncoding("utf8");
req.on("data", (data: string) => {
if (entityData === undefined) {
entityData = data;
}
else {
entityData += data;
}
});
req.on("end", () => {
const content = entityData !== undefined
? HttpContent.forMediaType(req.headers["Content-Type"], entityData)
: undefined;
resolve(HttpRequestMessage.create(req.method, req.url, req.headers, content));
});
req.on("error", reject);
});
}
2016-07-27 16:26:28 +02:00
}
2017-10-20 02:48:13 +02:00
interface HttpResponseMessage {
statusCode?: number;
statusMessage?: string;
headers: http.OutgoingHttpHeaders;
content?: HttpContent;
2014-07-13 01:04:16 +02:00
}
2017-10-20 02:48:13 +02:00
namespace HttpResponseMessage {
export function create(statusCode: number, headers: http.OutgoingHttpHeaders = {}, content?: HttpContent) {
return { statusCode, headers, content };
}
export function clone(message: HttpResponseMessage): HttpResponseMessage {
return {
statusCode: message.statusCode,
statusMessage: message.statusMessage,
headers: HttpHeaders.clone(message.headers),
content: HttpContent.clone(message.content)
};
}
export function ok(headers: http.OutgoingHttpHeaders, content: HttpContent | undefined): HttpResponseMessage;
export function ok(content?: HttpContent): HttpResponseMessage;
export function ok(contentOrHeaders: http.OutgoingHttpHeaders | HttpContent | undefined, content?: HttpContent): HttpResponseMessage {
let headers: http.OutgoingHttpHeaders;
if (!content) {
content = <HttpContent>contentOrHeaders;
headers = {};
}
return create(200, headers, content);
}
export function created(location?: string, etag?: string): HttpResponseMessage {
return create(201, { "Location": location, "ETag": etag });
}
export function noContent(headers?: http.OutgoingHttpHeaders): HttpResponseMessage {
return create(204, headers);
}
export function notModified(): HttpResponseMessage {
return create(304);
}
export function badRequest(): HttpResponseMessage {
return create(400);
}
export function notFound(): HttpResponseMessage {
return create(404);
}
export function methodNotAllowed(allowedMethods: string[]): HttpResponseMessage {
return create(405, { "Allow": allowedMethods });
}
export function preconditionFailed(): HttpResponseMessage {
return create(412);
}
export function unsupportedMediaType(): HttpResponseMessage {
return create(415);
}
export function internalServerError(content?: HttpContent): HttpResponseMessage {
return create(500, {}, content);
}
export function notImplemented(): HttpResponseMessage {
return create(501);
}
export function setHeaders(obj: HttpResponseMessage | HttpContent, headers: http.OutgoingHttpHeaders) {
Object.assign(obj.headers, headers);
}
export function writeResponse(message: HttpResponseMessage, response: http.ServerResponse) {
const content = message.content;
const headers = HttpHeaders.combine(message.headers, content && content.headers);
response.writeHead(message.statusCode, message.statusMessage || http.STATUS_CODES[message.statusCode], headers);
response.end(content && content.content, "utf8");
2014-07-13 01:04:16 +02:00
}
}
2017-10-20 02:48:13 +02:00
namespace HttpFileMessageHandler {
function handleGetRequest(request: HttpRequestMessage): HttpResponseMessage {
const file = HttpRequestMessage.getFile(request);
const stat = HttpRequestMessage.getStats(request);
const etag = ETag.compute(stat);
const headers: http.OutgoingHttpHeaders = {
"Last-Modified": stat.mtime.toUTCString(),
"ETag": etag
};
let content: HttpContent | undefined;
if (stat.isFile()) {
if (request.method === "HEAD") {
headers["Content-Type"] = guessMediaType(file);
headers["Content-Length"] = stat.size;
}
else {
content = HttpContent.forMediaType(guessMediaType(file), fs.readFileSync(file, "utf8"));
}
}
else {
return HttpResponseMessage.notFound();
}
2016-04-09 01:53:52 +02:00
2017-10-20 02:48:13 +02:00
return HttpResponseMessage.ok(headers, content);
}
function handlePutRequest(request: HttpRequestMessage): HttpResponseMessage {
if (request.headers["Content-Encoding"]) return HttpResponseMessage.unsupportedMediaType();
if (request.headers["Content-Range"]) return HttpResponseMessage.notImplemented();
2016-04-09 01:53:52 +02:00
2017-10-20 02:48:13 +02:00
const file = toLocalPath(request.url);
const exists = fs.existsSync(file);
mkdir(path.dirname(file));
fs.writeFileSync(file, request.content, "utf8");
return exists ? HttpResponseMessage.noContent() : HttpResponseMessage.created();
2016-04-09 01:53:52 +02:00
}
2017-10-20 02:48:13 +02:00
function handleDeleteRequest(request: HttpRequestMessage): HttpResponseMessage {
const file = HttpRequestMessage.getFile(request);
const stats = HttpRequestMessage.getStats(request);
if (stats.isFile()) {
fs.unlinkSync(file);
}
else if (stats.isDirectory()) {
fs.rmdirSync(file);
}
return HttpResponseMessage.noContent();
2016-04-09 01:53:52 +02:00
}
2017-10-20 02:48:13 +02:00
function handleOptionsRequest(request: HttpRequestMessage): HttpResponseMessage {
return HttpResponseMessage.noContent({
"X-Case-Sensitivity": useCaseSensitiveFileNames ? "CS" : "CI"
});
2016-04-09 01:53:52 +02:00
}
2017-10-20 02:48:13 +02:00
function handleRequestCore(request: HttpRequestMessage): HttpResponseMessage {
switch (request.method) {
case "HEAD":
case "GET":
return handleGetRequest(request);
case "PUT":
return handlePutRequest(request);
case "DELETE":
return handleDeleteRequest(request);
case "OPTIONS":
return handleOptionsRequest(request);
default:
return HttpResponseMessage.methodNotAllowed(["HEAD", "GET", "PUT", "DELETE", "OPTIONS"]);
}
}
export function handleRequest(request: HttpRequestMessage): HttpResponseMessage {
let response = HttpCache.get(request);
if (!response) HttpCache.set(request, response = handleRequestCore(request));
return response;
2016-04-09 01:53:52 +02:00
}
}
2017-10-20 02:48:13 +02:00
namespace HttpApiMessageHandler {
function handleResolveRequest(request: HttpRequestMessage): HttpResponseMessage {
if (!request.content) return HttpResponseMessage.badRequest();
const localPath = path.resolve(rootDir, request.content.content);
const relativePath = toURLPath(localPath);
return relativePath === undefined
? HttpResponseMessage.badRequest()
: HttpResponseMessage.ok(HttpContent.text(relativePath));
}
function handleListFilesRequest(request: HttpRequestMessage): HttpResponseMessage {
if (!request.content) return HttpResponseMessage.badRequest();
const localPath = path.resolve(rootDir, request.content.content);
const files: string[] = [];
visit(localPath, files);
return HttpResponseMessage.ok(HttpContent.json(files));
function visit(dirname: string, results: string[]) {
const { files, directories } = getAccessibleFileSystemEntries(dirname);
for (const file of files) {
results.push(toURLPath(path.join(dirname, file)));
}
for (const directory of directories) {
visit(path.join(dirname, directory), results);
}
}
}
function handleDirectoryExistsRequest(request: HttpRequestMessage): HttpResponseMessage {
if (!request.content) return HttpResponseMessage.badRequest();
const localPath = path.resolve(rootDir, request.content.content);
return HttpResponseMessage.ok(HttpContent.json(directoryExists(localPath)));
}
function handlePostRequest(request: HttpRequestMessage): HttpResponseMessage {
switch (request.url.pathname) {
case "/api/resolve":
return handleResolveRequest(request);
case "/api/listFiles":
return handleListFilesRequest(request);
case "/api/directoryExists":
return handleDirectoryExistsRequest(request);
default:
return HttpResponseMessage.notFound();
}
}
export function handleRequest(request: HttpRequestMessage): HttpResponseMessage {
switch (request.method) {
case "POST":
return handlePostRequest(request);
default:
return HttpResponseMessage.methodNotAllowed(["POST"]);
}
}
export function match(request: HttpRequestMessage) {
return /^\/api\//.test(request.url.pathname);
}
2016-04-09 01:53:52 +02:00
}
2017-10-20 02:48:13 +02:00
namespace HttpMessageHandler {
export function handleRequest(request: HttpRequestMessage): HttpResponseMessage {
const { ifMatch, ifNoneMatch, ifModifiedSince, ifUnmodifiedSince } = HttpHeaders.getIfConditions(request.headers);
const stats = HttpRequestMessage.getStats(request, /*throwErrors*/ false);
if (stats) {
const etag = ETag.compute(stats);
if (ifNoneMatch) {
if (ETag.matches(etag, ifNoneMatch)) {
return HttpResponseMessage.notModified();
}
}
else if (ifModifiedSince && stats.mtime.getTime() <= ifModifiedSince.getTime()) {
return HttpResponseMessage.notModified();
}
if (ifMatch && !ETag.matches(etag, ifMatch)) {
return HttpResponseMessage.preconditionFailed();
}
if (ifUnmodifiedSince && stats.mtime.getTime() > ifUnmodifiedSince.getTime()) {
return HttpResponseMessage.preconditionFailed();
}
}
else if (ifMatch === "*") {
return HttpResponseMessage.preconditionFailed();
}
if (HttpApiMessageHandler.match(request)) {
return HttpApiMessageHandler.handleRequest(request);
}
else {
return HttpFileMessageHandler.handleRequest(request);
}
}
export function handleError(e: any): HttpResponseMessage {
switch (e.code) {
case "ENOENT": return HttpResponseMessage.notFound();
default: return HttpResponseMessage.internalServerError(HttpContent.text(e.toString()));
2016-04-09 01:53:52 +02:00
}
}
}
2017-10-20 02:48:13 +02:00
namespace HttpCache {
interface CacheEntry {
timestamp: number;
expires: number;
response: HttpResponseMessage;
}
2014-07-13 01:04:16 +02:00
2017-10-20 02:48:13 +02:00
const cache: Record<string, CacheEntry> = Object.create(null);
2014-07-13 01:04:16 +02:00
2017-10-20 02:48:13 +02:00
export function get(request: HttpRequestMessage) {
if (request.method !== "GET" && request.method !== "HEAD") return undefined;
const cacheControl = HttpHeaders.getCacheControl(request.headers);
if (cacheControl.noCache) return undefined;
const entry = cache[request.url.toString()];
if (!entry) return undefined;
const age = (Date.now() - entry.timestamp) / 1000;
const lifetime = (entry.expires - Date.now()) / 1000;
if (cacheControl.maxAge !== undefined && cacheControl.maxAge < age) return undefined;
if (lifetime >= 0) {
if (cacheControl.minFresh !== undefined && cacheControl.minFresh < lifetime) return undefined;
}
else {
if (cacheControl.maxStale === undefined || cacheControl.maxStale < -lifetime) {
return undefined;
2014-07-13 01:04:16 +02:00
}
2016-07-27 16:26:28 +02:00
}
2017-10-20 02:48:13 +02:00
if (request.method === "GET" && !entry.response.content) {
return undefined; // partial response
}
const response = HttpResponseMessage.clone(entry.response);
response.headers["Age"] = Math.floor(age);
return response;
}
export function set(request: HttpRequestMessage, response: HttpResponseMessage) {
if (request.method !== "GET" && request.method !== "HEAD") return response;
const cacheControl = HttpHeaders.getCacheControl(request.headers);
if (cacheControl.noCache) return response;
if (cacheControl.noStore) return response;
const timestamp = Date.now();
const expires = HttpHeaders.getExpires(response.headers);
const age = (Date.now() - timestamp) / 1000;
const lifetime = (expires - Date.now()) / 1000;
if (cacheControl.maxAge !== undefined && cacheControl.maxAge < age) return response;
if (lifetime >= 0) {
if (cacheControl.minFresh !== undefined && cacheControl.minFresh < lifetime) return response;
}
else {
if (cacheControl.maxStale === undefined || cacheControl.maxStale < -lifetime) return response;
}
cache[request.url.toString()] = {
timestamp,
expires,
response: HttpResponseMessage.clone(response)
};
response.headers["Age"] = Math.floor(age);
return response;
}
function cleanupCache() {
for (const url in cache) {
const entry = cache[url];
if (entry.expires < Date.now()) delete cache[url];
2014-07-13 01:04:16 +02:00
}
}
2017-10-20 02:48:13 +02:00
setInterval(cleanupCache, 60000).unref();
2014-07-13 01:04:16 +02:00
}
2017-10-20 02:48:13 +02:00
namespace ETag {
export function compute(stats: fs.Stats) {
return JSON.stringify(crypto
.createHash("sha1")
.update(JSON.stringify({
dev: stats.dev,
ino: stats.ino,
mtime: stats.mtimeMs,
size: stats.size
}))
.digest("base64"));
}
export function matches(etag: string | undefined, condition: "*" | string[]) {
return etag && condition === "*" || condition.indexOf(etag) >= 0;
}
2014-07-13 01:04:16 +02:00
}
2017-10-20 02:48:13 +02:00
function isFileSystemCaseSensitive(): boolean {
// win32\win64 are case insensitive platforms
const platform = os.platform();
if (platform === "win32" || <string>platform === "win64") {
return false;
}
// If this file exists under a different case, we must be case-insensitve.
return !fs.existsSync(swapCase(__filename));
}
2014-07-13 01:04:16 +02:00
2017-10-20 02:48:13 +02:00
function swapCase(s: string): string {
return s.replace(/\w/g, (ch) => {
const up = ch.toUpperCase();
return ch === up ? ch.toLowerCase() : up;
});
2014-07-13 01:04:16 +02:00
}
2017-10-20 02:48:13 +02:00
function hasLeadingSeparator(pathname: string) {
const ch = pathname.charAt(0);
return ch === "/" || ch === "\\";
[Transforms] Merge master 08/09 (#10263) * Improve error message * Remove `SupportedExpressionWithTypeArguments` type; just check that the expression of each `ExpressionWithTypeArguments` is an `EntityNameExpression`. * Fix bug * Fix #10083 - allowSyntheticDefaultImports alters getExternalModuleMember (#10096) * Use recursion, and fix error for undefined node * Rename function * Fix lint error * Narrowing type parameter intersects w/narrowed types This makes sure that a union type that includes a type parameter is still usable as the actual type that the type guard narrows to. * Don't allow ".d.ts" extension in an import either. * Add a helper function `getOrUpdateProperty` to prevent unprotected access to Maps. * Limit type guards as assertions to incomplete types in loops * Accept new baselines * Fix linting error * Allow JS multiple declarations of ctor properties When a property is declared in the constructor and on the prototype of an ES6 class, the property's symbol is discarded in favour of the method's symbol. That because the usual use for this pattern is to bind an instance function: `this.m = this.m.bind(this)`. In this case the type you want really is the method's type. * Use {} type facts for unconstrained type params Previously it was using TypeFacts.All. But the constraint of an unconstrained type parameter is actually {}. * Fix newline lint * Test that declares conflicting method first * [Release-2.0] Fix 9662: Visual Studio 2015 with TS2.0 gives incorrect @types path resolution errors (#9867) * Change the shape of the shim layer to support getAutomaticTypeDirectives * Change the key for looking up automatic type-directives * Update baselines from change look-up name of type-directives * Add @currentDirectory into the test * Update baselines * Fix linting error * Address PR: fix spelling mistake * Instead of return path of the type directive names just return type directive names * Remove unused reference files: these tests produce erros so they will not produce these files (#9233) * Add string-literal completion test for jsdoc * Support other (new) literal types in jsdoc * Don't allow properties inherited from Object to be automatically included in TSX attributes * Add new test baseline and delete else in binder The extra `else` caused a ton of test failures! * Fix lint * Port PR #10016 to Master (#10100) * Treat namespaceExportDeclaration as declaration * Update baselines * wip - add tests * Add tests * Show "export namespace" for quick-info * Fix more lint * Try using runtests-parallel for CI (#9970) * Try using runtests-parallel for CI * Put worker count setting into .travis.yml * Reduce worker count to 4 - 8 wasnt much different from 4-6 but had contention issues causing timeouts * Fix lssl task (#9967) * Surface noErrorTruncation option * Stricter check for discriminant properties in type guards * Add tests * Emit more efficient/concise "empty" ES6 ctor When there are property assignments in a the class body of an inheriting class, tsc current emit the following compilation: ```ts class Foo extends Bar { public foo = 1; } ``` ```js class Foo extends Bar { constructor(…args) { super(…args); this.foo = 1; } } ``` This introduces an unneeded local variable and might force a reification of the `arguments` object (or otherwise reify the arguments into an array). This is particularly bad when that output is fed into another transpiler like Babel. In Babel, you get something like this today: ```js var Foo = (function (_Bar) { _inherits(Foo, _Bar); function Foo() { _classCallCheck(this, Foo); for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } _Bar.call.apply(_Bar, [this].concat(args)); this.foo = 1; } return Foo; })(Bar); ``` This causes a lot of needless work/allocations and some very strange code (`.call.apply` o_0). Admittedly, this is not strictly tsc’s problem; it could have done a deeper analysis of the code and optimized out the extra dance. However, tsc could also have emitted this simpler, more concise and semantically equivalent code in the first place: ```js class Foo extends Bar { constructor() { super(…arguments); this.foo = 1; } } ``` Which compiles into the following in Babel: ```js var Foo = (function (_Bar) { _inherits(Foo, _Bar); function Foo() { _classCallCheck(this, Foo); _Bar.apply(this, arguments); this.foo = 1; } return Foo; })(Bar); ``` Which is well-optimized (today) in most engines and much less confusing to read. As far as I can tell, the proposed compilation has exactly the same semantics as before. Fixes #10175 * Fix instanceof operator narrowing issues * Accept new baselines * Add regression test * Improve naming and documentation from PR * Update comment * Add more tests * Accept new baselines * Reduce worker count to 3 (#10210) Since we saw a starvation issue on one of @sandersn's PRs. * Speed up fourslash tests * Duh * Make baselines faster by not writing out unneeded files * Fix non-strict-compliant test * Fix 10076: Fix Tuple Destructing with "this" (#10208) * Call checkExpression eventhough there is no appropriate type from destructuring of array * Add tests and baselines * use transpileModule * Remove use strict * Improve instanceof for structurally identical types * Introduce isTypeInstanceOf function * Add test * Accept new baselines * Fix loop over array to use for-of instead of for-in * Use correct this in tuple type parameter constraints Instantiate this in tuple types used as type parameter constraints * Add explanatory comment to resolveTupleTypeMembers * Ignore null, undefined, void when checking for discriminant property * Add regression test * Delay tuple type constraint resolution Create a new tuple that stores the this-type. * Always use thisType when generating tuple id * Optimize format of type list id strings used in maps * wip - fix error * Make ReadonlyArray iterable. * Allow OSX to fail while we investigate (#10255) The random test timeouts are an issue. * Fix error from using merging master * avoid using the global name * Fix single-quote lint * Update baselines * Fix linting * Optimize performance of maps * Update API sample * Fix processDiagnosticMessages script * Have travis take shallow clones of the repo (#10275) Just cloning TS on travis takes 23 seconds on linux (68 seconds on mac), hopefully having it do a shallow clone will help. We don't rely on any tagging/artifacts from the travis servers which clone depth could impact, so this shouldn't impact anything other than build speed. * Add folds to travis log (#10269) * Optimize filterType to only call getUnionType if necessary * Add shorthand types declaration for travis-fold (#10293) * Optimize getTypeWithFacts * Filter out nullable and primitive types in isDiscriminantProperty * Fix typo * Add regression tests * Optimize core filter function to only allocate when necessary * Address CR comments + more optimizations * Faster path for creating union types from filterType * Allow an @types direcotry to have a package.json which specifies `"typings": null` to disclude it from automatically included typings. * Lint * Collect timing information for commands running on travis (#10308) * Simplifies performance API * Use 'MapLike' instead of 'Map' in 'preferConstRule.ts'. * narrow from 'any' in most situations instanceof and user-defined typeguards narrow from 'any' unless the narrowed-to type is exactly 'Object' or 'Function'. This is a breaking change. * Update instanceof conformance tests * accept new baselines * add tests * accept new baselines * Use lowercase names for type reference directives * Use proper response codes in web tests * Treat ambient shorthand declarations as explicit uses of the `any` type * Rename 'find' functions * Parallel linting (#10313) * A perilous thing, a parallel lint * Use work queue rather than scheduling work * Dont read files for lint on main thread * Fix style * Fix the style fix (#10344) * Aligned mark names with values used by ts-perf. * Use an enum in checkClassForDuplicateDeclarations to aid readability * Rename to Accessor * Migrated more MapLikes to Maps * Add ES2015 Date constructor signature that accepts another Date (#10353) * Parameters with no assignments implicitly considered const * Add tests * Migrate additional MapLikes to Maps. * Fix 10625: JSX Not validating when index signature is present (#10352) * Check for type of property declaration before using index signature * Add tests and baselines * fix linting error * Adding more comments * Clean up/move some Map helper functions. * Revert some formatting changes. * Improve ReadonlyArray<T>.concat to match Array<T> The Array-based signature was incorrect and also out-of-date. * Fix link to blog * Remove old assertion about when we're allowed to use fileExists * Set isNewIdentifierLocation to true for JavaScript files * Update error message for conflicting type definitions Fixes #10370 * Explain why we lower-case type reference directives * Correctly merge bindThisPropertyAssignment Also simply it considerably after noticing that it's *only* called for Javascript files, so there was a lot of dead code for TS cases that never happened. * Fix comment * Property handle imcomplete control flow types in nested loops * Update due to CR suggestion * Add regression test * Assign and instantiate contextual this type if not present * Fix 10289: correctly generate tsconfig.json with --lib (#10355) * Separate generate tsconfig into its own function and implement init with --lib # Conflicts: # src/compiler/tsc.ts * Add tests and baselines; Update function name Add unittests and baselines Add unittests and baselines for generating tsconfig Move unittest into harness folder Update harness tsconfig.json USe correct function name * Use new MapLike interstead. Update unittest # Conflicts: # src/compiler/commandLineParser.ts * Update JakeFile * Add tests for incorrect cases * Address PR : remove explicity write node_modules * JSDoc supports null, undefined and never types * Update baselines in jsDocParsing unit tests * Restored comments to explain spreading 'arguments' into calls to 'super'. * Added test. * Use the non-nullable type of the contextual type for object completions. * Return non-JsDocComment children ... to make syntactic classification work * Add more tests for `export = foo.bar`. * Output test baselines to tests/baselines/local instead of root * Move supportedTypescriptExtensionsWithDtsFirst next to supportedTypeScriptExtensions and rename * Fix comment * Fix RWC Runner (#10420) * Use /// <reference types * Don't report an errors if it comes from lib.d.ts * Treat special property access symbol differently ... when retriving documentation * Fix tests * Update shim version to be 2.1 (#10424) * Check return code paths on getters (#10102) * Check return paths on getters * Remove TODO comment * Remove extraneous arguments from harness's runBaseline (#10419) * Remove extraneous arguments from runBaseline * Address comments from @yuit * Remove needless call to basename * Refactor baseliners out of compiler runner (#10440) * CR feedback * fix broken tests * Pass in baselineOpts into types baselines so that RWC baselines can be written to internal folder (#10443) * Add error message Add error message when trying to relate primitives to the boxed/apparent backing types. * fix linting error * follow advise * remove extra code * Add more test for 10426 * fix some errors * routine update of dom libs * Add test for jsdoc syntactic classification for function declaration * Simplify implementation * Tolerate certain errors in tsconfig.json * Add test for configFile error tolerance * Use TS parser to tolerate more errors in tsconfig.json * Implement tuple types as type references to synthesized generic types * Add comments + minor changes * Accept new baselines * Add .types extension * Properly guard for undefined in getTypeReferenceArity * Add jsdoc nullable union test case to fourslash * Fix class/interface merging issue + lint error * Allow "typings" in a package.json to be missing its extension (but also allow it to have an extension) * Contextually type this in getDeclFromSig, not checkThisExpr * Update parser comment with es7 grammar (#10459) * Use ES7 term of ExponentiationExpression * Update timeout for mac OS * Address PR: add space * allowSyntheticDefaultImports resolves to modules instead of variables Fixes #10429 by improving the fix in #10096 * Rename getContextuallyTypedThisParameter to getContextualThisParameter * Fix 10472: Invalid emitted code for await expression (#10483) * Properly emit await expression with yield expression * Add tests and update baselines * Move parsing await expression into parse unary-expression * Update incorrect comment * change error message * Fix broken build from merging with master * Fix linting error
2016-08-27 00:51:10 +02:00
}
2017-10-20 02:48:13 +02:00
function ensureLeadingSeparator(pathname: string) {
return hasLeadingSeparator(pathname) ? pathname : "/" + pathname;
2014-07-13 01:04:16 +02:00
}
2017-10-20 02:48:13 +02:00
function trimLeadingSeparator(pathname: string) {
return hasLeadingSeparator(pathname) ? pathname.slice(1) : pathname;
}
2014-07-13 01:04:16 +02:00
2017-10-20 02:48:13 +02:00
function normalizeSlashes(path: string) {
return path.replace(/\\+/g, "/");
}
2014-07-13 01:04:16 +02:00
2017-10-20 02:48:13 +02:00
function hasTrailingSeparator(pathname: string) {
const ch = pathname.charAt(pathname.length - 1);
return ch === "/" || ch === "\\";
}
2014-07-13 01:04:16 +02:00
2017-10-20 02:48:13 +02:00
function toLocalPath(url: url.URL) {
const pathname = decodeURIComponent(url.pathname);
return path.join(rootDir, pathname);
}
function toURLPath(pathname: string) {
pathname = normalizeSlashes(pathname);
pathname = trimLeadingSeparator(pathname);
const resolvedPath = path.resolve(rootDir, pathname);
if (resolvedPath.slice(0, rootDir.length) !== rootDir) {
return undefined;
2016-07-27 16:26:28 +02:00
}
2017-10-20 02:48:13 +02:00
let relativePath = resolvedPath.slice(rootDir.length);
relativePath = ensureLeadingSeparator(relativePath);
relativePath = normalizeSlashes(relativePath);
return relativePath;
2014-07-13 01:04:16 +02:00
}
2017-10-20 02:48:13 +02:00
function directoryExists(dirname: string) {
const stat = tryStat(dirname);
return !!stat && stat.isDirectory();
2014-07-13 01:04:16 +02:00
}
2017-10-20 02:48:13 +02:00
function mkdir(dirname: string) {
try {
fs.mkdirSync(dirname);
2014-07-13 01:04:16 +02:00
}
2017-10-20 02:48:13 +02:00
catch (e) {
if (e.code === "EEXIST") {
return;
}
if (e.code === "ENOENT") {
const parentdir = path.dirname(dirname);
if (!parentdir || parentdir === dirname) throw e;
mkdir(parentdir);
fs.mkdirSync(dirname);
return;
}
throw e;
}
}
function tryStat(pathname: string) {
try {
return fs.statSync(pathname);
}
catch (e) {
return undefined;
}
}
function getAccessibleFileSystemEntries(pathname: string) {
try {
const entries = fs.readdirSync(pathname).sort();
const files: string[] = [];
const directories: string[] = [];
for (const entry of entries) {
// This is necessary because on some file system node fails to exclude
// "." and "..". See https://github.com/nodejs/node/issues/4002
if (entry === "." || entry === "..") {
continue;
}
const name = path.join(pathname, entry);
2016-04-09 01:53:52 +02:00
2017-10-20 02:48:13 +02:00
let stat: fs.Stats;
try {
stat = fs.statSync(name);
}
catch (e) {
continue;
}
if (stat.isFile()) {
files.push(entry);
}
else if (stat.isDirectory()) {
directories.push(entry);
2014-07-13 01:04:16 +02:00
}
}
2017-10-20 02:48:13 +02:00
return { files, directories };
}
catch (e) {
return { files: [], directories: [] };
2014-07-13 01:04:16 +02:00
}
}
2017-10-20 02:48:13 +02:00
function log(msg: string) {
if (verbose) {
console.log(msg);
}
}
function guessMediaType(pathname: string) {
switch (path.extname(pathname).toLowerCase()) {
case ".html": return "text/html";
case ".css": return "text/css";
case ".js": return "application/javascript";
case ".ts": return "text/plain";
case ".json": return "text/plain";
default: return "binary";
}
}
function printHelp() {
console.log("Runs an http server on port 8888, looking for tests folder in the current directory\n");
console.log("Syntax: node webTestServer.js [browser] [tests] [--verbose]\n");
console.log("Options:");
console.log(" <browser> The browser to launch. One of 'IE', 'chrome', or 'none' (default 'IE').");
console.log(" <tests> A regular expression to pass to Mocha.");
console.log(" --verbose Enables verbose logging.")
}
function parseCommandLine(args: string[]) {
let offset = 0;
for (let i = 0; i < args.length; i++) {
const arg = args[i];
const argLower = arg.toLowerCase();
if (argLower === "--help") {
printHelp();
return false;
}
else if (argLower === "--verbose") {
verbose = true;
}
else {
if (offset === 0) {
browser = arg;
2014-09-11 18:22:27 +02:00
}
2017-10-20 02:48:13 +02:00
else if (offset === 1) {
grep = arg;
2014-09-11 18:22:27 +02:00
}
2017-10-20 02:48:13 +02:00
else {
console.log(`Unrecognized argument: ${arg}\n`);
return false;
}
offset++;
}
2016-07-27 16:26:28 +02:00
}
2017-10-20 02:48:13 +02:00
if (browser !== "IE" && browser !== "chrome") {
console.log(`Unrecognized browser '${browser}', expected 'IE' or 'chrome'.`);
return false;
2014-07-13 01:04:16 +02:00
}
2017-10-20 02:48:13 +02:00
return true;
}
function startServer() {
console.log(`Static file server running at\n => http://localhost:${port}/\nCTRL + C to shutdown`);
http.createServer((serverRequest: http.ServerRequest, serverResponse: http.ServerResponse) => {
log(`${serverRequest.method} ${serverRequest.url}`);
HttpRequestMessage
.readRequest(serverRequest)
.then(HttpMessageHandler.handleRequest)
.catch(HttpMessageHandler.handleError)
.then(response => HttpResponseMessage.writeResponse(response, serverResponse));
}).listen(port);
2016-07-27 16:26:28 +02:00
}
2017-10-20 02:48:13 +02:00
function startClient() {
let browserPath: string;
if (browser === "none") {
return;
}
if (browser === "chrome") {
let defaultChromePath = "";
switch (os.platform()) {
case "win32":
defaultChromePath = "C:/Program Files (x86)/Google/Chrome/Application/chrome.exe";
break;
case "darwin":
defaultChromePath = "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome";
break;
case "linux":
defaultChromePath = "/opt/google/chrome/chrome";
break;
default:
console.log(`default Chrome location is unknown for platform '${os.platform()}'`);
break;
}
if (fs.existsSync(defaultChromePath)) {
browserPath = defaultChromePath;
}
else {
browserPath = browser;
}
2016-07-27 16:26:28 +02:00
}
else {
2017-10-20 02:48:13 +02:00
const defaultIEPath = "C:/Program Files/Internet Explorer/iexplore.exe";
if (fs.existsSync(defaultIEPath)) {
browserPath = defaultIEPath;
}
else {
browserPath = browser;
}
2014-07-13 01:04:16 +02:00
}
2017-10-20 02:48:13 +02:00
console.log(`Using browser: ${browserPath}`);
const queryString = grep ? `?grep=${grep}` : "";
child_process.spawn(browserPath, [`http://localhost:${port}/tests/webTestResults.html${queryString}`], {
stdio: "inherit"
});
2014-07-13 01:04:16 +02:00
}
2017-10-20 02:48:13 +02:00
function main() {
if (parseCommandLine(process.argv.slice(2))) {
startServer();
startClient();
}
}
2014-07-13 01:04:16 +02:00
2017-10-20 02:48:13 +02:00
main();