/modules/tinymce/src/plugins/nonbreaking/test/ts/webdriver/NonbreakingVisualCharsTypingTest.ts

https://github.com/tinymce/tinymce · TypeScript · 232 lines · 217 code · 13 blank · 2 comment · 16 complexity · 46261b1b3614128d00f20cf4c460ad8b MD5 · raw file

  1. import { ApproxStructure, RealKeys } from '@ephox/agar';
  2. import { before, beforeEach, describe, it } from '@ephox/bedrock-client';
  3. import { Unicode } from '@ephox/katamari';
  4. import { PlatformDetection } from '@ephox/sand';
  5. import { TinyAssertions, TinyHooks, TinySelections, TinyUiActions } from '@ephox/wrap-mcagar';
  6. import Editor from 'tinymce/core/api/Editor';
  7. import NonbreakingPlugin from 'tinymce/plugins/nonbreaking/Plugin';
  8. import VisualCharsPlugin from 'tinymce/plugins/visualchars/Plugin';
  9. describe('webdriver.tinymce.plugins.nonbreaking.NonbreakingVisualCharsTypingTest', () => {
  10. // Note: Uses RealKeys, so needs a browser. Headless won't work.
  11. const hook = TinyHooks.bddSetup<Editor>({
  12. plugins: 'nonbreaking visualchars',
  13. toolbar: 'nonbreaking visualchars',
  14. visualchars_default_state: true,
  15. base_url: '/project/tinymce/js/tinymce'
  16. }, [ NonbreakingPlugin, VisualCharsPlugin ]);
  17. const detection = PlatformDetection.detect();
  18. const isIE = detection.browser.isIE();
  19. const getNbspText = (text: string) => {
  20. if (detection.browser.isFirefox()) {
  21. return Unicode.zeroWidth + text + ' ';
  22. } else if (isIE) {
  23. return text + ' ';
  24. } else {
  25. return Unicode.zeroWidth + text + Unicode.nbsp;
  26. }
  27. };
  28. const clickNbspToolbarButton = (editor: Editor) => TinyUiActions.clickOnToolbar(editor, 'button[aria-label="Nonbreaking space"]');
  29. before(function () {
  30. // TODO TINY-4129: this currently fails on IE 11 and Edge 18 or above and needs to be investigated
  31. if (detection.browser.isIE() || detection.browser.isEdge()) {
  32. this.skip();
  33. }
  34. });
  35. beforeEach(() => {
  36. const editor = hook.editor();
  37. editor.setContent('');
  38. });
  39. it('TINY-3647: Click on the nbsp button then type some text, and assert content is correct', async () => {
  40. const editor = hook.editor();
  41. clickNbspToolbarButton(editor);
  42. await RealKeys.pSendKeysOn('iframe => body => p', [ RealKeys.text('test') ]);
  43. TinyAssertions.assertContentStructure(editor, ApproxStructure.build((s, str, arr) => s.element('body', {
  44. children: [
  45. s.element('p', {
  46. children: [
  47. s.element('span', {
  48. classes: [ arr.has('mce-nbsp-wrap'), arr.has('mce-nbsp') ],
  49. children: [
  50. s.text(str.is(Unicode.nbsp))
  51. ]
  52. }),
  53. s.text(str.is(Unicode.zeroWidth + 'test'))
  54. ]
  55. })
  56. ]
  57. })));
  58. });
  59. it('TINY-3647: Add text to editor, click on the nbsp button, and assert content is correct', () => {
  60. const editor = hook.editor();
  61. editor.setContent('test');
  62. TinySelections.setCursor(editor, [ 0, 0 ], 4);
  63. clickNbspToolbarButton(editor);
  64. TinyAssertions.assertContentStructure(editor, ApproxStructure.build((s, str, arr) => s.element('body', {
  65. children: [
  66. s.element('p', {
  67. children: [
  68. s.text(str.is('test')),
  69. s.element('span', {
  70. classes: [ arr.has('mce-nbsp-wrap'), arr.has('mce-nbsp') ],
  71. children: [
  72. s.text(str.is(Unicode.nbsp))
  73. ]
  74. }),
  75. s.text(str.is(Unicode.zeroWidth))
  76. ]
  77. })
  78. ]
  79. })));
  80. });
  81. it('TINY-3647: Add content to editor, click on the nbsp button then type some text, and assert content is correct', async () => {
  82. const editor = hook.editor();
  83. editor.setContent('test');
  84. TinySelections.setCursor(editor, [ 0, 0 ], 4);
  85. clickNbspToolbarButton(editor);
  86. await RealKeys.pSendKeysOn('iframe => body => p', [ RealKeys.text('test') ]);
  87. TinyAssertions.assertContentStructure(editor, ApproxStructure.build((s, str, arr) => s.element('body', {
  88. children: [
  89. s.element('p', {
  90. children: [
  91. s.text(str.is('test')),
  92. s.element('span', {
  93. classes: [ arr.has('mce-nbsp-wrap'), arr.has('mce-nbsp') ],
  94. children: [
  95. s.text(str.is(Unicode.nbsp))
  96. ]
  97. }),
  98. s.text(str.is(isIE ? 'test' : Unicode.zeroWidth + 'test'))
  99. ]
  100. })
  101. ]
  102. })));
  103. });
  104. it('TINY-3647: Click on the nbsp button then type a space, and assert content is correct', async () => {
  105. const editor = hook.editor();
  106. clickNbspToolbarButton(editor);
  107. await RealKeys.pSendKeysOn('iframe => body => p', [ RealKeys.text(' ') ]);
  108. TinyAssertions.assertContentStructure(editor, ApproxStructure.build((s, str, arr) => s.element('body', {
  109. children: [
  110. s.element('p', {
  111. children: [
  112. s.element('span', {
  113. classes: [ arr.has('mce-nbsp-wrap'), arr.has('mce-nbsp') ],
  114. children: [
  115. s.text(str.is(Unicode.nbsp))
  116. ]
  117. }),
  118. s.text(str.is(getNbspText('')))
  119. ].concat(detection.browser.isFirefox() ? [ s.element('br', {}) ] : [])
  120. })
  121. ]
  122. })));
  123. });
  124. it('TINY-3647: Add text to editor, click on the nbsp button and add content plus a space, and assert content is correct', async () => {
  125. const editor = hook.editor();
  126. editor.setContent('test');
  127. TinySelections.setCursor(editor, [ 0, 0 ], 4);
  128. clickNbspToolbarButton(editor);
  129. TinyAssertions.assertContentStructure(editor, ApproxStructure.build((s, str, arr) => s.element('body', {
  130. children: [
  131. s.element('p', {
  132. children: [
  133. s.text(str.is('test')),
  134. s.element('span', {
  135. classes: [ arr.has('mce-nbsp-wrap'), arr.has('mce-nbsp') ],
  136. children: [
  137. s.text(str.is(Unicode.nbsp))
  138. ]
  139. }),
  140. s.text(str.is(Unicode.zeroWidth))
  141. ]
  142. })
  143. ]
  144. })));
  145. await RealKeys.pSendKeysOn('iframe => body => p', [ RealKeys.text('test ') ]);
  146. TinyAssertions.assertContentStructure(editor, ApproxStructure.build((s, str, arr) => s.element('body', {
  147. children: [
  148. s.element('p', {
  149. children: [
  150. s.text(str.is('test')),
  151. s.element('span', {
  152. classes: [ arr.has('mce-nbsp-wrap'), arr.has('mce-nbsp') ],
  153. children: [
  154. s.text(str.is(Unicode.nbsp))
  155. ]
  156. }),
  157. s.text(str.is(getNbspText('test')))
  158. ].concat(detection.browser.isFirefox() ? [ s.element('br', {}) ] : [])
  159. })
  160. ]
  161. })));
  162. });
  163. it('TINY-3647: Add text to editor, click on the nbsp button and add content plus a space, repeat, and assert content is correct', async () => {
  164. const editor = hook.editor();
  165. editor.setContent('test');
  166. TinySelections.setCursor(editor, [ 0, 0 ], 4);
  167. clickNbspToolbarButton(editor);
  168. TinyAssertions.assertContentStructure(editor, ApproxStructure.build((s, str, arr) => s.element('body', {
  169. children: [
  170. s.element('p', {
  171. children: [
  172. s.text(str.is('test')),
  173. s.element('span', {
  174. classes: [ arr.has('mce-nbsp-wrap'), arr.has('mce-nbsp') ],
  175. children: [
  176. s.text(str.is(Unicode.nbsp))
  177. ]
  178. }),
  179. s.text(str.is(Unicode.zeroWidth))
  180. ]
  181. })
  182. ]
  183. })));
  184. await RealKeys.pSendKeysOn('iframe => body => p', [ RealKeys.text('test ') ]);
  185. TinyAssertions.assertContentStructure(editor, ApproxStructure.build((s, str, arr) => s.element('body', {
  186. children: [
  187. s.element('p', {
  188. children: [
  189. s.text(str.is('test')),
  190. s.element('span', {
  191. classes: [ arr.has('mce-nbsp-wrap'), arr.has('mce-nbsp') ],
  192. children: [
  193. s.text(str.is(Unicode.nbsp))
  194. ]
  195. }),
  196. s.text(str.is(getNbspText('test')))
  197. ].concat(detection.browser.isFirefox() ? [ s.element('br', {}) ] : [])
  198. })
  199. ]
  200. })));
  201. await RealKeys.pSendKeysOn('iframe => body => p', [ RealKeys.text('test ') ]);
  202. TinyAssertions.assertContentStructure(editor, ApproxStructure.build((s, str, arr) => s.element('body', {
  203. children: [
  204. s.element('p', {
  205. children: [
  206. s.text(str.is('test')),
  207. s.element('span', {
  208. classes: [ arr.has('mce-nbsp-wrap'), arr.has('mce-nbsp') ],
  209. children: [
  210. s.text(str.is(Unicode.nbsp))
  211. ]
  212. }),
  213. s.text(str.is(getNbspText('test test')))
  214. ].concat(detection.browser.isFirefox() ? [ s.element('br', {}) ] : [])
  215. })
  216. ]
  217. })));
  218. });
  219. });