123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- import Scroll from '../../../blots/scroll';
- describe('Block Embed', function() {
- it('insert', function() {
- const scroll = this.initialize(Scroll, '<p>0123</p>');
- scroll.insertAt(2, 'video', '#');
- expect(scroll.domNode).toEqualHTML(`
- <p>01</p>
- <iframe src="#" class="ql-video" frameborder="0" allowfullscreen="true"></iframe>
- <p>23</p>
- `);
- });
- it('split newline', function() {
- const scroll = this.initialize(Scroll, '<p>0123</p>');
- scroll.insertAt(4, 'video', '#');
- expect(scroll.domNode).toEqualHTML(`
- <p>0123</p>
- <iframe src="#" class="ql-video" frameborder="0" allowfullscreen="true"></iframe>
- <p><br></p>
- `);
- });
- it('insert end of document', function() {
- const scroll = this.initialize(Scroll, '<p>0123</p>');
- scroll.insertAt(5, 'video', '#');
- expect(scroll.domNode).toEqualHTML(`
- <p>0123</p>
- <iframe src="#" class="ql-video" frameborder="0" allowfullscreen="true"></iframe>
- `);
- });
- it('insert text before', function() {
- const scroll = this.initialize(
- Scroll,
- '<iframe src="#" class="ql-video" frameborder="0" allowfullscreen="true"></iframe>',
- );
- scroll.insertAt(0, 'Test');
- expect(scroll.domNode).toEqualHTML(`
- <p>Test</p>
- <iframe src="#" class="ql-video" frameborder="0" allowfullscreen="true"></iframe>
- `);
- });
- it('insert text after', function() {
- const scroll = this.initialize(
- Scroll,
- '<iframe src="#" class="ql-video" frameborder="0" allowfullscreen="true"></iframe>',
- );
- scroll.insertAt(1, 'Test');
- expect(scroll.domNode).toEqualHTML(`
- <iframe src="#" class="ql-video" frameborder="0" allowfullscreen="true"></iframe>
- <p>Test</p>
- `);
- });
- it('insert inline embed before', function() {
- const scroll = this.initialize(
- Scroll,
- '<iframe src="#" class="ql-video" frameborder="0" allowfullscreen="true"></iframe>',
- );
- scroll.insertAt(0, 'image', '/assets/favicon.png');
- expect(scroll.domNode).toEqualHTML(`
- <p><img src="/assets/favicon.png"></p>
- <iframe src="#" class="ql-video" frameborder="0" allowfullscreen="true"></iframe>
- `);
- });
- it('insert inline embed after', function() {
- const scroll = this.initialize(
- Scroll,
- '<iframe src="#" class="ql-video" frameborder="0" allowfullscreen="true"></iframe>',
- );
- scroll.insertAt(1, 'image', '/assets/favicon.png');
- expect(scroll.domNode).toEqualHTML(`
- <iframe src="#" class="ql-video" frameborder="0" allowfullscreen="true"></iframe>
- <p><img src="/assets/favicon.png"></p>
- `);
- });
- it('insert block embed before', function() {
- const scroll = this.initialize(
- Scroll,
- '<iframe src="#" class="ql-video" frameborder="0" allowfullscreen="true"></iframe>',
- );
- scroll.insertAt(0, 'video', '#1');
- expect(scroll.domNode).toEqualHTML(`
- <iframe src="#1" class="ql-video" frameborder="0" allowfullscreen="true"></iframe>
- <iframe src="#" class="ql-video" frameborder="0" allowfullscreen="true"></iframe>
- `);
- });
- it('insert block embed after', function() {
- const scroll = this.initialize(
- Scroll,
- '<iframe src="#" class="ql-video" frameborder="0" allowfullscreen="true"></iframe>',
- );
- scroll.insertAt(1, 'video', '#1');
- expect(scroll.domNode).toEqualHTML(`
- <iframe src="#" class="ql-video" frameborder="0" allowfullscreen="true"></iframe>
- <iframe src="#1" class="ql-video" frameborder="0" allowfullscreen="true"></iframe>
- `);
- });
- it('insert newline before', function() {
- const scroll = this.initialize(
- Scroll,
- '<iframe src="#" class="ql-video" frameborder="0" allowfullscreen="true"></iframe>',
- );
- scroll.insertAt(0, '\n');
- scroll.optimize();
- expect(scroll.domNode).toEqualHTML(`
- <p><br></p>
- <iframe src="#" class="ql-video" frameborder="0" allowfullscreen="true"></iframe>
- `);
- });
- it('insert newline after', function() {
- const scroll = this.initialize(
- Scroll,
- '<iframe src="#" class="ql-video" frameborder="0" allowfullscreen="true"></iframe>',
- );
- scroll.insertAt(1, '\n');
- scroll.optimize();
- expect(scroll.domNode).toEqualHTML(`
- <iframe src="#" class="ql-video" frameborder="0" allowfullscreen="true"></iframe>
- <p><br></p>
- `);
- });
- it('delete preceding newline', function() {
- const scroll = this.initialize(
- Scroll,
- '<p>0123</p><iframe src="#" class="ql-video" frameborder="0" allowfullscreen="true"></iframe>',
- );
- scroll.deleteAt(4, 1);
- expect(scroll.domNode).toEqualHTML(`
- <p>0123</p>
- <iframe src="#" class="ql-video" frameborder="0" allowfullscreen="true"></iframe>
- `);
- });
- });
|