2016-06-23 12:47:54 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2016-09-27 20:12:25 -04:00
|
|
|
|
2015-05-29 17:33:54 -04:00
|
|
|
|
2015-02-11 17:54:59 -05:00
|
|
|
var fs = require('fs');
|
|
|
|
var sourceMap = require('source-map');
|
|
|
|
|
2015-05-29 17:33:54 -04:00
|
|
|
describe('sourcemaps', function() {
|
2016-05-02 01:54:19 -04:00
|
|
|
var URL = 'all/playground/src/sourcemap/index.html';
|
2015-02-11 17:54:59 -05:00
|
|
|
|
|
|
|
it('should map sources', function() {
|
|
|
|
browser.get(URL);
|
2015-04-30 14:25:50 -04:00
|
|
|
|
|
|
|
$('error-app .errorButton').click();
|
|
|
|
|
2015-02-11 17:54:59 -05:00
|
|
|
// TODO(tbosch): Bug in ChromeDriver: Need to execute at least one command
|
|
|
|
// so that the browser logs can be read out!
|
|
|
|
browser.executeScript('1+1');
|
|
|
|
browser.manage().logs().get('browser').then(function(logs) {
|
2016-08-05 12:50:49 -04:00
|
|
|
var errorLine: number = null;
|
|
|
|
var errorColumn: number = null;
|
2015-02-11 17:54:59 -05:00
|
|
|
logs.forEach(function(log) {
|
2016-08-05 12:50:49 -04:00
|
|
|
const match = log.message.match(/\.createError\s+\(.+:(\d+):(\d+)/m);
|
2015-02-11 17:54:59 -05:00
|
|
|
if (match) {
|
|
|
|
errorLine = parseInt(match[1]);
|
|
|
|
errorColumn = parseInt(match[2]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(errorLine).not.toBeNull();
|
|
|
|
expect(errorColumn).not.toBeNull();
|
|
|
|
|
2015-03-24 11:01:26 -04:00
|
|
|
|
2015-11-23 17:58:18 -05:00
|
|
|
const content =
|
2016-08-05 12:56:53 -04:00
|
|
|
fs.readFileSync('dist/all/playground/src/sourcemap/index.js').toString('utf8');
|
|
|
|
const marker = '//# sourceMappingURL=data:application/json;base64,';
|
2015-11-23 17:58:18 -05:00
|
|
|
const index = content.indexOf(marker);
|
|
|
|
const sourceMapData =
|
2016-08-05 12:56:53 -04:00
|
|
|
new Buffer(content.substring(index + marker.length), 'base64').toString('utf8');
|
2015-11-23 17:58:18 -05:00
|
|
|
|
2015-02-11 17:54:59 -05:00
|
|
|
var decoder = new sourceMap.SourceMapConsumer(JSON.parse(sourceMapData));
|
|
|
|
|
2015-05-29 17:33:54 -04:00
|
|
|
var originalPosition = decoder.originalPositionFor({line: errorLine, column: errorColumn});
|
2015-02-11 17:54:59 -05:00
|
|
|
|
2016-08-05 12:56:53 -04:00
|
|
|
var sourceCodeLines = fs.readFileSync('modules/playground/src/sourcemap/index.ts', {
|
|
|
|
encoding: 'UTF-8'
|
|
|
|
}).split('\n');
|
2015-09-02 23:58:02 -04:00
|
|
|
expect(sourceCodeLines[originalPosition.line - 1])
|
2016-08-25 03:50:16 -04:00
|
|
|
.toMatch(/throw new Error\(\'Sourcemap test\'\)/);
|
2015-02-11 17:54:59 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|