This repository was archived by the owner on Apr 4, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 155
fix(@angular-devkit/schematics): add support for BOM to UpdateRecorder #862
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is
index
in terms of byte offsets or character offsets? Also is the string forcontent
converted into the encoding specified by the BOM? It might be useful longer term to have both aBinaryUpdateRecorder
andTextUpdateRecorder
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indeed. Right now it's in term of binary offset. I'm still unsure how we want to approach this problem.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need an
UpdateBuffer
that supports text instead of buffers. That's not a huuuuge challenge, but something we should defer to the libraries (maybe?).