Skip to content

Create a document query and verification tool #343

Open
@matthew-carroll

Description

@matthew-carroll

Editor-level tests require verifying various document and editor properties. This is very verbose when we use the standard tools for constructing such information.

Investigate what a query and verification tool might look like to simplify tests.

Verbose selection verification example:

expect(
  _editContext.composer.selection,
  equals(
    const DocumentSelection.collapsed(
      position: DocumentPosition(
        nodeId: '1',
        nodePosition: TextNodePosition(offset: 11),
      ),
    ),
  ),
 );

A possible alternative representation:

expect(_editContext, hasTextSelection("1", 11));

Verbose document creation:

MutableDocument(
              nodes: [
                ParagraphNode(
                  id: '1',
                  text: AttributedText(text: 'Text with [DELETEME] selection'),
                ),
              ],
            )

A more concise document creation:

// Notice the "**", we can auto-parse as Markdown to avoid the very verbose span markers.
DocBuilder()
  ..paragraph(id: '1', "Text with **[DELETEME]** selection");

Metadata

Metadata

Assignees

No one assigned

    Labels

    area_infrastructurePertains to cross-cutting infrastructurearea_supereditorPertains to SuperEditorstatus_needs_analysisA maintainer needs to break down this ticket into action items.

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions