| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225 |
- /**
- * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- import ModelTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/modeltesteditor';
- import CodeBlockEditing from '@ckeditor/ckeditor5-code-block/src/codeblockediting';
- import Enter from '@ckeditor/ckeditor5-enter/src/enter';
- import Input from '@ckeditor/ckeditor5-typing/src/input';
- import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
- import ShiftEnter from '@ckeditor/ckeditor5-enter/src/shiftenter';
- import UndoEditing from '@ckeditor/ckeditor5-undo/src/undoediting';
- import { getData, setData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
- import LinkEditing from '../src/linkediting';
- import AutoLink from '../src/autolink';
- describe( 'AutoLink', () => {
- let editor;
- it( 'should be named', () => {
- expect( AutoLink.pluginName ).to.equal( 'AutoLink' );
- } );
- describe( 'auto link behavior', () => {
- let model;
- beforeEach( async () => {
- editor = await ModelTestEditor.create( {
- plugins: [ Paragraph, Input, Enter, ShiftEnter, LinkEditing, AutoLink ]
- } );
- model = editor.model;
- setData( model, '<paragraph>[]</paragraph>' );
- } );
- it( 'does not add linkHref attribute to a text link while typing', () => {
- simulateTyping( 'https://www.cksource.com' );
- expect( getData( model ) ).to.equal(
- '<paragraph>https://www.cksource.com[]</paragraph>'
- );
- } );
- it( 'adds linkHref attribute to a text link after space', () => {
- simulateTyping( 'https://www.cksource.com ' );
- expect( getData( model ) ).to.equal(
- '<paragraph><$text linkHref="https://www.cksource.com">https://www.cksource.com</$text> []</paragraph>'
- );
- } );
- it( 'adds linkHref attribute to a text link after space (inside paragraph)', () => {
- setData( model, '<paragraph>Foo Bar [] Baz</paragraph>' );
- simulateTyping( 'https://www.cksource.com ' );
- expect( getData( model ) ).to.equal(
- '<paragraph>Foo Bar <$text linkHref="https://www.cksource.com">https://www.cksource.com</$text> [] Baz</paragraph>'
- );
- } );
- it( 'adds linkHref attribute to a text link after a soft break', () => {
- setData( model, '<paragraph>https://www.cksource.com[]</paragraph>' );
- editor.execute( 'shiftEnter' );
- // TODO: should test with selection but master has a bug. See: https://github.com/ckeditor/ckeditor5/issues/7459.
- expect( getData( model, { withoutSelection: true } ) ).to.equal(
- '<paragraph>' +
- '<$text linkHref="https://www.cksource.com">https://www.cksource.com</$text>' +
- '<softBreak></softBreak>' +
- '</paragraph>'
- );
- } );
- it( 'does not add linkHref attribute to a text link after double soft break', () => {
- setData( model, '<paragraph>https://www.cksource.com<softBreak></softBreak>[]</paragraph>' );
- editor.execute( 'shiftEnter' );
- expect( getData( model ) ).to.equal(
- '<paragraph>https://www.cksource.com<softBreak></softBreak><softBreak></softBreak>[]</paragraph>'
- );
- } );
- it( 'adds linkHref attribute to a text link on enter', () => {
- setData( model, '<paragraph>https://www.cksource.com[]</paragraph>' );
- editor.execute( 'enter' );
- expect( getData( model ) ).to.equal(
- '<paragraph>' +
- '<$text linkHref="https://www.cksource.com">https://www.cksource.com</$text>' +
- '</paragraph>' +
- '<paragraph>[]</paragraph>'
- );
- } );
- it( 'adds "mailto://" to link of detected email addresses', () => {
- simulateTyping( 'newsletter@cksource.com ' );
- expect( getData( model ) ).to.equal(
- '<paragraph><$text linkHref="mailto://newsletter@cksource.com">newsletter@cksource.com</$text> []</paragraph>'
- );
- } );
- const supportedURLs = [
- 'http://cksource.com',
- 'https://cksource.com',
- 'http://www.cksource.com',
- 'hTtP://WwW.cKsOuRcE.cOm',
- 'http://foo.bar.cksource.com',
- 'http://www.cksource.com/some/path/index.html#abc',
- 'http://www.cksource.com/some/path/index.html?foo=bar',
- 'http://www.cksource.com/some/path/index.html?foo=bar#abc',
- 'http://localhost',
- 'ftp://cksource.com',
- 'mailto://cksource@cksource.com',
- 'www.cksource.com',
- 'cksource.com'
- ];
- const unsupportedURLs = [
- 'http://www.cksource.com/some/path/index.html#abc?foo=bar', // Wrong #? sequence.
- 'http:/cksource.com'
- ];
- for ( const supportedURL of supportedURLs ) {
- it( `should detect "${ supportedURL }" as a valid URL`, () => {
- simulateTyping( supportedURL + ' ' );
- expect( getData( model ) ).to.equal(
- `<paragraph><$text linkHref="${ supportedURL }">${ supportedURL }</$text> []</paragraph>` );
- } );
- }
- for ( const unsupportedURL of unsupportedURLs ) {
- it( `should not detect "${ unsupportedURL }" as a valid URL`, () => {
- simulateTyping( unsupportedURL + ' ' );
- expect( getData( model ) ).to.equal(
- `<paragraph>${ unsupportedURL } []</paragraph>` );
- } );
- }
- } );
- describe( 'Undo integration', () => {
- let model;
- beforeEach( async () => {
- editor = await ModelTestEditor.create( {
- plugins: [ Paragraph, Input, Enter, ShiftEnter, LinkEditing, AutoLink, UndoEditing ]
- } );
- model = editor.model;
- setData( model, '<paragraph>https://www.cksource.com[]</paragraph>' );
- } );
- it( 'should undo auto-linking (after space)', () => {
- simulateTyping( ' ' );
- editor.commands.execute( 'undo' );
- expect( getData( model ) ).to.equal(
- '<paragraph>https://www.cksource.com []</paragraph>'
- );
- } );
- it( 'should undo auto-linking (after <softBreak>)', () => {
- editor.execute( 'shiftEnter' );
- editor.commands.execute( 'undo' );
- expect( getData( model ) ).to.equal(
- '<paragraph>https://www.cksource.com<softBreak></softBreak>[]</paragraph>'
- );
- } );
- it( 'should undo auto-linking (after enter)', () => {
- editor.execute( 'enter' );
- editor.commands.execute( 'undo' );
- expect( getData( model ) ).to.equal(
- '<paragraph>https://www.cksource.com</paragraph>' +
- '<paragraph>[]</paragraph>'
- );
- } );
- } );
- describe( 'Code blocks integration', () => {
- let model;
- beforeEach( async () => {
- editor = await ModelTestEditor.create( {
- plugins: [ Paragraph, Input, Enter, ShiftEnter, LinkEditing, AutoLink, CodeBlockEditing ]
- } );
- model = editor.model;
- } );
- it( 'should be disabled inside code blocks', () => {
- setData( model, '<codeBlock language="plaintext">some [] code</codeBlock>' );
- const plugin = editor.plugins.get( 'AutoLink' );
- simulateTyping( 'www.cksource.com' );
- expect( plugin.isEnabled ).to.be.false;
- expect( getData( model, { withoutSelection: true } ) )
- .to.equal( '<codeBlock language="plaintext">some www.cksource.com code</codeBlock>' );
- } );
- } );
- function simulateTyping( text ) {
- const letters = text.split( '' );
- for ( const letter of letters ) {
- editor.execute( 'input', { text: letter } );
- }
- }
- } );
|