-
Notifications
You must be signed in to change notification settings - Fork 12k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(@angular-devkit/schematics): add support for BOM to UpdateRecorder
Fixes #10644
- Loading branch information
Showing
3 changed files
with
103 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
66 changes: 66 additions & 0 deletions
66
packages/angular_devkit/schematics/src/tree/recorder_spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
/** | ||
* @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 | ||
*/ | ||
import { normalize } from '@angular-devkit/core'; | ||
import { SimpleFileEntry } from './entry'; | ||
import { UpdateRecorderBase, UpdateRecorderBom } from './recorder'; | ||
|
||
describe('UpdateRecorderBase', () => { | ||
it('works for simple files', () => { | ||
const buffer = new Buffer('Hello World'); | ||
const entry = new SimpleFileEntry(normalize('/some/path'), buffer); | ||
|
||
const recorder = new UpdateRecorderBase(entry); | ||
recorder.insertLeft(5, ' beautiful'); | ||
const result = recorder.apply(buffer); | ||
expect(result.toString()).toBe('Hello beautiful World'); | ||
}); | ||
|
||
it('works for simple files (2)', () => { | ||
const buffer = new Buffer('Hello World'); | ||
const entry = new SimpleFileEntry(normalize('/some/path'), buffer); | ||
|
||
const recorder = new UpdateRecorderBase(entry); | ||
recorder.insertRight(5, ' beautiful'); | ||
const result = recorder.apply(buffer); | ||
expect(result.toString()).toBe('Hello beautiful World'); | ||
}); | ||
|
||
it('can create the proper recorder', () => { | ||
const e = new SimpleFileEntry(normalize('/some/path'), new Buffer('hello')); | ||
expect(UpdateRecorderBase.createFromFileEntry(e) instanceof UpdateRecorderBase).toBe(true); | ||
expect(UpdateRecorderBase.createFromFileEntry(e) instanceof UpdateRecorderBom).toBe(false); | ||
}); | ||
|
||
it('can create the proper recorder (bom)', () => { | ||
const eBom = new SimpleFileEntry(normalize('/some/path'), new Buffer('\uFEFFhello')); | ||
expect(UpdateRecorderBase.createFromFileEntry(eBom) instanceof UpdateRecorderBase).toBe(true); | ||
expect(UpdateRecorderBase.createFromFileEntry(eBom) instanceof UpdateRecorderBom).toBe(true); | ||
}); | ||
|
||
it('supports empty files', () => { | ||
const e = new SimpleFileEntry(normalize('/some/path'), new Buffer('')); | ||
expect(UpdateRecorderBase.createFromFileEntry(e) instanceof UpdateRecorderBase).toBe(true); | ||
}); | ||
|
||
it('supports empty files (bom)', () => { | ||
const eBom = new SimpleFileEntry(normalize('/some/path'), new Buffer('\uFEFF')); | ||
expect(UpdateRecorderBase.createFromFileEntry(eBom) instanceof UpdateRecorderBase).toBe(true); | ||
}); | ||
}); | ||
|
||
describe('UpdateRecorderBom', () => { | ||
it('works for simple files', () => { | ||
const buffer = new Buffer('\uFEFFHello World'); | ||
const entry = new SimpleFileEntry(normalize('/some/path'), buffer); | ||
|
||
const recorder = new UpdateRecorderBom(entry); | ||
recorder.insertLeft(5, ' beautiful'); | ||
const result = recorder.apply(buffer); | ||
expect(result.toString()).toBe('\uFEFFHello beautiful World'); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters