Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New test project to make specification tests easier to write for developers #344

Merged
merged 5 commits into from
Jan 27, 2025

Conversation

Mpdreamz
Copy link
Member

@Mpdreamz Mpdreamz commented Jan 26, 2025

Sunday evening having fun creating a spike of what a better test setup for us would look like.

This PR is an initial stab at porting some of the tests over without removing them from the old project.

The current test project infrastructure is still from my POC. This PR moves our tests over to F# for terser tests that we can name much better thanks to F# support for quoted identifiers:

module ``inline elements``.``anchors DEPRECATED``

open Xunit
open authoring

type ``inline anchor in the middle`` () =

    static let markdown = Setup.Markdown """
this is *regular* text and this $$$is-an-inline-anchor$$$ and this continues to be regular text
"""

    [<Fact>]
    let ``validate HTML`` () =
        markdown |> convertsToHtml """
            <p>this is <em>regular</em> text and this <a id="is-an-inline-anchor"></a> and this continues to be regular text</p>
            """
    [<Fact>]
    let ``has no errors`` () = markdown |> hasNoErrors

This allows us to name out tests MUCH better and easier:

image

Markdown and html are highlighted correctly (as they are in our current tests).

image

Further more the expected and actual html are parsed and compared at an AST level for comparison. This allows us to be less rigid with HTML formatting and format it in a way thats better for readability:

image

On top of that we have stronger test failure message for HTML assertions to help us diagnose much quicker since they now include a full diff:

image

We move to xunit v3 so we no longer have to pass ITestOutputHelper around everywhere to ensure we see errors/warnings in test explorers in the IDE.

For now we use a combination of FsUnit and Unquote for assertions but so far I am liking Unquote a lot more:

Unquote takes quoted f# expression AST executes

So e.g:

let message = errorDiagnostics.FirstOrDefault().Message
test <@ message.Contains(expected) @>

Will yield the following exception message:

message.Contains(expected)
"Substitution key {valid-key} is undefined".Contains("key {valid-key} is undefinex")
false

Since it evaluates each step of the code invocation its super clear why the test is failing.

This is a spike to make it easier to write markdown specification tests.

It allows us to test markdown fragments and their resulting HTML much terser while making it easier to come up with good test names.
@Mpdreamz Mpdreamz added the ci label Jan 26, 2025
@Mpdreamz Mpdreamz requested a review from reakaleek January 26, 2025 21:31
@Mpdreamz Mpdreamz changed the title spike/cleaner tests New test project to make specification tests easier to write for developers Jan 26, 2025
Copy link
Member

@reakaleek reakaleek left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😮

@Mpdreamz Mpdreamz merged commit ea43fc2 into main Jan 27, 2025
5 checks passed
@Mpdreamz Mpdreamz deleted the spike/cleaner-tests branch January 27, 2025 09:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants