/
githubmirror
/
brackets
Обзор
Документация
Войти
/
githubmirror
/
brackets
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/extensions/default/HtmlEntityCodeHints/unittests.js
165 строк
6 KB
Martin Zagora
fix html entity hinting tests
24 фев 2017, 01:45
24 фев 2017, 01:45
fdc7e17
Код
Авторство
О чём код?
/* * Copyright (c) 2013 - present Adobe Systems Incorporated. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * */ /*global describe, it, expect, beforeEach, afterEach */ define(function (require, exports, module) { "use strict"; // Modules from the SpecRunner window var SpecRunnerUtils = brackets.getModule("spec/SpecRunnerUtils"), HTMLEntityHints = require("main").SpecialCharHints, defaultContent = require("text!unittest-files/default.html"); // Helper function for testing cursor position function fixPos(pos) { if (!("sticky" in pos)) { pos.sticky = null; } return pos; } describe("HTML Entity Hinting", function () { var testEditorAndDoc, hintProvider = new HTMLEntityHints(); beforeEach(function () { testEditorAndDoc = SpecRunnerUtils.createMockEditor(defaultContent, "html"); }); afterEach(function () { SpecRunnerUtils.destroyMockEditor(testEditorAndDoc.doc); }); // Ask provider for hints at current cursor position; expect it to return some function expectHints(provider) { expect(provider.hasHints(testEditorAndDoc.editor, null)).toBe(true); var hintsObj = provider.getHints(null); expect(hintsObj).toBeTruthy(); return hintsObj.hints; // return just the array of hints } // Ask provider for hints at current cursor position function expectNoHints(provider) { expect(provider.hasHints(testEditorAndDoc.editor, null)).toBe(false); } it("should show hints when in Text in paragraph", function () { testEditorAndDoc.editor.setCursorPos({line: 7, ch: 17}); expectHints(hintProvider); }); it("should show hints when another entity is in the same line", function () { testEditorAndDoc.editor.setCursorPos({line: 12, ch: 23}); expectHints(hintProvider); }); it("should show hints when cursor inside entity", function () { testEditorAndDoc.editor.setCursorPos({line: 17, ch: 19}); var hints = expectHints(hintProvider); expect(hints).toEqual(["&acirc; <span class='entity-display-character'>â</span>", "&acute; <span class='entity-display-character'>´</span>"]); }); it("shouldn't show hints when inside an opening tag", function () { testEditorAndDoc.editor.setCursorPos({line: 21, ch: 11}); expectNoHints(hintProvider); }); it("shouldn't show hints when inside a closing tag", function () { testEditorAndDoc.editor.setCursorPos({line: 24, ch: 15}); expectNoHints(hintProvider); }); it("should show hints when semi-colon on the same line", function () { testEditorAndDoc.editor.setCursorPos({line: 28, ch: 21}); expectHints(hintProvider); }); it("shouldn't show hints in attribute name", function () { testEditorAndDoc.editor.setCursorPos({line: 32, ch: 12}); expectNoHints(hintProvider); }); it("shouldn't show hints in attribute value", function () { testEditorAndDoc.editor.setCursorPos({line: 35, ch: 19}); expectNoHints(hintProvider); }); it("shouldn't show hints in url", function () { testEditorAndDoc.editor.setCursorPos({line: 38, ch: 78}); expectNoHints(hintProvider); }); it("should show multiple hints in the same line", function () { testEditorAndDoc.editor.setCursorPos({line: 41, ch: 17}); expectHints(hintProvider); testEditorAndDoc.editor.setCursorPos({line: 41, ch: 29}); expectHints(hintProvider); }); it("should sort &#xxxx hints numerically not alphabetically", function () { testEditorAndDoc.editor.setCursorPos({line: 45, ch: 14}); var hints = expectHints(hintProvider); hintProvider.insertHint(hints[0]); expect(testEditorAndDoc.editor.document.getRange({line: 45, ch: 12}, {line: 45, ch: 17})).toEqual("!"); testEditorAndDoc.editor.setCursorPos({line: 45, ch: 14}); hintProvider.insertHint(hints[23]); expect(testEditorAndDoc.editor.document.getRange({line: 45, ch: 12}, {line: 45, ch: 18})).toEqual("{"); }); describe("Inserting Tests", function () { it("should replace entity with hint if inside entity", function () { testEditorAndDoc.editor.setCursorPos({line: 17, ch: 19}); var hints = expectHints(hintProvider); hintProvider.insertHint(hints[0]); expect(testEditorAndDoc.editor.document.getRange({line: 17, ch: 16}, {line: 17, ch: 23})).toEqual("â"); }); it("should place cursor at the end of the replaced entity", function () { testEditorAndDoc.editor.setCursorPos({line: 17, ch: 19}); var hints = expectHints(hintProvider); hintProvider.insertHint(hints[0]); expect(fixPos(testEditorAndDoc.editor.getCursorPos())).toEqual(fixPos({line: 17, ch: 23})); }); }); }); });