-
Notifications
You must be signed in to change notification settings - Fork 392
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* CB-4743 adds html sanitizer * CB-4743 adds license to sanitizeHtml * CB-4743 do not use sanitize to purify the json line data * CB-4743 fix: toSafeHtmlString test correct cases --------- Co-authored-by: s.teleshev <[email protected]> Co-authored-by: mr-anton-t <[email protected]>
- Loading branch information
1 parent
23328e7
commit 9934ed9
Showing
3 changed files
with
43 additions
and
0 deletions.
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
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,28 @@ | ||
/* | ||
* CloudBeaver - Cloud Database Manager | ||
* Copyright (C) 2020-2024 DBeaver Corp and others | ||
* | ||
* Licensed under the Apache License, Version 2.0. | ||
* you may not use this file except in compliance with the License. | ||
*/ | ||
import { toSafeHtmlString } from './toSafeHtmlString'; | ||
|
||
describe('toSafeHtmlString', () => { | ||
it('should make html string safe', () => { | ||
const input = '<script>alert("some unsafe action")</script>'; | ||
const output = toSafeHtmlString(input); | ||
expect(output).toBe('<script>alert("some unsafe action")</script>'); | ||
}); | ||
|
||
it('should return empty string', () => { | ||
const input = ''; | ||
const output = toSafeHtmlString(input); | ||
expect(output).toBe(''); | ||
}); | ||
|
||
it('should return the same string', () => { | ||
const input = 'some safe string'; | ||
const output = toSafeHtmlString(input); | ||
expect(output).toBe(input); | ||
}); | ||
}); |
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,14 @@ | ||
/* | ||
* CloudBeaver - Cloud Database Manager | ||
* Copyright (C) 2020-2024 DBeaver Corp and others | ||
* | ||
* Licensed under the Apache License, Version 2.0. | ||
* you may not use this file except in compliance with the License. | ||
*/ | ||
export function toSafeHtmlString(dirty: string): string { | ||
const el = document.createElement('div'); | ||
el.innerText = el.textContent = dirty; | ||
dirty = el.innerHTML; | ||
|
||
return dirty; | ||
} |