All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.gradle.api.plugins.buildcomparison.render.internal.html.GradleBuildComparisonResultHtmlRendererTest.groovy Maven / Gradle / Ivy

There is a newer version: 8.6
Show newest version
/*
 * Copyright 2012 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.gradle.api.plugins.buildcomparison.render.internal.html

import org.gradle.api.Transformer
import org.gradle.api.internal.file.TestFiles
import org.gradle.api.plugins.buildcomparison.compare.internal.BuildComparisonResult
import org.gradle.api.plugins.buildcomparison.compare.internal.BuildOutcomeComparisonResult
import org.gradle.api.plugins.buildcomparison.gradle.internal.ComparableGradleBuildExecuter
import org.gradle.api.plugins.buildcomparison.gradle.internal.DefaultGradleBuildInvocationSpec
import org.gradle.api.plugins.buildcomparison.outcome.internal.BuildOutcome
import org.gradle.api.plugins.buildcomparison.outcome.internal.DefaultBuildOutcomeAssociation
import org.gradle.api.plugins.buildcomparison.outcome.string.StringBuildOutcome
import org.gradle.api.plugins.buildcomparison.outcome.string.StringBuildOutcomeComparisonResult
import org.gradle.api.plugins.buildcomparison.outcome.string.StringBuildOutcomeComparisonResultHtmlRenderer
import org.gradle.api.plugins.buildcomparison.outcome.string.StringBuildOutcomeHtmlRenderer
import org.gradle.api.plugins.buildcomparison.render.internal.BuildComparisonResultRenderer
import org.gradle.api.plugins.buildcomparison.render.internal.DefaultBuildOutcomeComparisonResultRendererFactory
import org.gradle.api.plugins.buildcomparison.render.internal.DefaultBuildOutcomeRendererFactory
import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
import org.jsoup.Jsoup
import org.jsoup.nodes.Document
import org.junit.Rule
import spock.lang.Specification

import java.nio.charset.Charset

class GradleBuildComparisonResultHtmlRendererTest extends Specification {

    @Rule TestNameTestDirectoryProvider dir = new TestNameTestDirectoryProvider()

    def comparisonRenderers = new DefaultBuildOutcomeComparisonResultRendererFactory(HtmlRenderContext)
    def outcomeRenderers = new DefaultBuildOutcomeRendererFactory(HtmlRenderContext)

    def unassociatedFrom = new HashSet()
    def unassociatedTo = new HashSet()
    def comparisons = new LinkedList()

    def writer = new StringWriter()

    def hostAttributes = [foo: "bar"]

    def sourceBuildDir = dir.createDir("source")
    def targetBuildDir = dir.createDir("target")
    def resolver = TestFiles.resolver(dir.testDirectory)
    def sourceBuildSpec = new DefaultGradleBuildInvocationSpec(resolver, sourceBuildDir)
    def targetBuildSpec = new DefaultGradleBuildInvocationSpec(resolver, targetBuildDir)
    def sourceBuildExecuter = new ComparableGradleBuildExecuter(sourceBuildSpec)
    def targetBuildExecuter = new ComparableGradleBuildExecuter(targetBuildSpec)

    BuildComparisonResultRenderer makeRenderer() {
        new GradleBuildComparisonResultHtmlRenderer(comparisonRenderers, outcomeRenderers, Charset.defaultCharset(), sourceBuildExecuter, targetBuildExecuter, hostAttributes, new Transformer() {
            Object transform(Object original) {
                original.path
            }
        })
    }

    BuildComparisonResult makeResult(
            Set unassociatedFrom = this.unassociatedFrom,
            Set unassociatedTo = this.unassociatedTo,
            List> comparisons = this.comparisons
    ) {
        new BuildComparisonResult(unassociatedFrom, unassociatedTo, comparisons)
    }

    StringBuildOutcome str(name, value = name) {
        new StringBuildOutcome(name, value)
    }

    Set strs(String... strings) {
        strings.collect { str(it) } as Set
    }

    BuildOutcomeComparisonResult strcmp(String from, String to) {
        new StringBuildOutcomeComparisonResult(
                new DefaultBuildOutcomeAssociation(str(from), str(to), StringBuildOutcome)
        )
    }

    Document render() {
        makeRenderer().render(makeResult(), writer)
        Jsoup.parse(writer.toString())
    }

    def "render some results"() {
        given:
        comparisonRenderers.registerRenderer(new StringBuildOutcomeComparisonResultHtmlRenderer())
        outcomeRenderers.registerRenderer(new StringBuildOutcomeHtmlRenderer())

        and:
        comparisons << strcmp("a", "a")
        comparisons << strcmp("a", "b")
        comparisons << strcmp("a", "c")

        unassociatedFrom << str("foo")
        unassociatedTo << str("bar")

        when:
        def html = render()

        then:
        // Just need to test that the renderers were called correctly, not the renderers themselves
        def tables = html.select(".build-outcome-comparison table")
        tables.size() == 3
        tables[0].select("th").text() == "Source Target Distance"
        tables[0].select("td")[0].text() == "a"
        tables[1].select("td")[2].text() == comparisons.last.distance.toString()
        html.select(".build-outcome.source").find { it.id() == "foo" }
        html.select(".build-outcome.target").find { it.id() == "bar" }
    }

    def "sort buildcomparison report by name"() {
        given:
        comparisonRenderers.registerRenderer(new StringBuildOutcomeComparisonResultHtmlRenderer())
        outcomeRenderers.registerRenderer(new StringBuildOutcomeHtmlRenderer())

        and:
        comparisons << strcmp("a", "a")
        comparisons << strcmp("c", "a")
        comparisons << strcmp("b", "a")

        and:
        unassociatedFrom << str("ufa")
        unassociatedFrom << str("ufc")
        unassociatedFrom << str("ufb")

        and:
        unassociatedTo << str("uta")
        unassociatedTo << str("utc")
        unassociatedTo << str("utb")

        when:
        def html = render()

        then:
        def tables = html.select(".build-outcome-comparison table")
        tables[0].select("td")[0].text() == "b"
        tables[1].select("td")[0].text() == "c"
        tables[2].select("td")[0].text() == "a"

        and:
        def uncomparedFroms = html.select(".build-outcome.source p")
        uncomparedFroms[0].text() == "ufa"
        uncomparedFroms[1].text() == "ufb"
        uncomparedFroms[2].text() == "ufc"

        and:
        def uncomparedTos = html.select(".build-outcome.target p")
        uncomparedTos[0].text() == "uta"
        uncomparedTos[1].text() == "utb"
        uncomparedTos[2].text() == "utc"
    }

    def "show differences first in the buildcomparison report"() {
        given:
        comparisonRenderers.registerRenderer(new StringBuildOutcomeComparisonResultHtmlRenderer())
        outcomeRenderers.registerRenderer(new StringBuildOutcomeHtmlRenderer())

        and:
        comparisons << strcmp("a", "a")
        comparisons << strcmp("c", "a")
        comparisons << strcmp("b", "a")
        comparisons << strcmp("e", "e")
        comparisons << strcmp("d", "d")

        when:
        def html = render()

        then:
        def tables = html.select(".build-outcome-comparison table")
        tables[0].select("td")[0].text() == "b"
        tables[1].select("td")[0].text() == "c"
        tables[2].select("td")[0].text() == "a"
        tables[3].select("td")[0].text() == "d"
        tables[4].select("td")[0].text() == "e"
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy