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

org.gradle.internal.ImmutableActionSetTest.groovy Maven / Gradle / Ivy

There is a newer version: 8.11.1
Show newest version
/*
 * Copyright 2017 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.internal

import org.gradle.api.Action
import spock.lang.Specification

class ImmutableActionSetTest extends Specification {
    def "creates an empty set that does nothing"() {
        expect:
        def set = ImmutableActionSet.empty()
        set.execute("value")
        set.empty
    }

    def "can add no-op action to empty set"() {
        expect:
        def set = ImmutableActionSet.empty().add(Actions.doNothing())
        set.is(ImmutableActionSet.empty())
    }

    def "can add empty set to empty set"() {
        expect:
        def set = ImmutableActionSet.empty().add(ImmutableActionSet.empty())
        set.is(ImmutableActionSet.empty())
    }

    def "can create singleton set"() {
        def action = Mock(Action)

        when:
        def set = ImmutableActionSet.empty().add(action)

        then:
        !set.empty

        when:
        set.execute("value")

        then:
        1 * action.execute("value")
        0 * _
    }

    def "can add no-op action to singleton set"() {
        def action = Mock(Action)

        expect:
        def set = ImmutableActionSet.empty().add(action)
        set.add(Actions.doNothing()).is(set)
    }

    def "can add empty set to singleton set"() {
        def action = Mock(Action)

        expect:
        def set = ImmutableActionSet.empty().add(action)
        set.add(ImmutableActionSet.empty()).is(set)
    }

    def "can add duplicate action to singleton set"() {
        def action = Mock(Action)

        expect:
        def set = ImmutableActionSet.empty().add(action)
        set.add(action).is(set)
        set.add(ImmutableActionSet.of(action)).is(set)
    }

    def "can add action to singleton set"() {
        def action1 = Mock(Action)
        def action2 = Mock(Action)

        when:
        def set = ImmutableActionSet.empty().add(action1).add(action2)

        then:
        !set.empty

        when:
        set.execute("value")

        then:
        1 * action1.execute("value")
        1 * action2.execute("value")
        0 * _
    }

    def "can create a set from multiple actions"() {
        def action1 = Mock(Action)
        def action2 = Mock(Action)

        when:
        def set1 = ImmutableActionSet.of(action1, action2)

        then:
        !set1.empty

        when:
        set1.execute("value")

        then:
        1 * action1.execute("value")
        1 * action2.execute("value")
        0 * _

        when:
        def set2 = ImmutableActionSet.of(action1)

        then:
        !set2.empty

        when:
        set2.execute("value")

        then:
        1 * action1.execute("value")
        0 * _

        when:
        def set3 = ImmutableActionSet.of()

        then:
        set3.is(ImmutableActionSet.empty())
    }

    def "execution stops on first failure"() {
        def action1 = Mock(Action)
        def action2 = Mock(Action)
        def action3 = Mock(Action)
        def failure = new RuntimeException()

        when:
        def set = ImmutableActionSet.of(action1, action2, action3)
        set.execute("value")

        then:
        def e = thrown(RuntimeException)
        e == failure
        1 * action1.execute("value")
        1 * action2.execute("value") >> { throw failure }
        0 * _
    }

    def "can add no-op action to composite set"() {
        def action1 = Mock(Action)
        def action2 = Mock(Action)

        expect:
        def set = ImmutableActionSet.of(action1, action2)
        set.add(Actions.doNothing()).is(set)
    }

    def "can add empty set to composite set"() {
        def action1 = Mock(Action)
        def action2 = Mock(Action)

        expect:
        def set = ImmutableActionSet.of(action1, action2)
        set.add(ImmutableActionSet.empty()).is(set)
    }

    def "can add duplicate action to composite set"() {
        def action1 = Mock(Action)
        def action2 = Mock(Action)

        expect:
        def set = ImmutableActionSet.of(action1, action2)
        set.add(action1).is(set)
        set.add(action2).is(set)
        set.add(ImmutableActionSet.of(action1)).is(set)
        set.add(ImmutableActionSet.of(action2)).is(set)
        set.add(ImmutableActionSet.of(action1, action2)).is(set)
        set.add(ImmutableActionSet.of(action2, action1)).is(set)
        ImmutableActionSet.of(action1).add(set).is(set)
    }

    def "can add self to composite set"() {
        def action1 = Mock(Action)
        def action2 = Mock(Action)

        expect:
        def set = ImmutableActionSet.of(action1, action2)
        set.add(set).is(set)
    }

    def "can add action to composite set"() {
        def action1 = Mock(Action)
        def action2 = Mock(Action)
        def action3 = Mock(Action)

        when:
        def set = ImmutableActionSet.of(action1, action2).add(action3)

        then:
        !set.empty

        when:
        set.execute("value")

        then:
        1 * action1.execute("value")
        1 * action2.execute("value")
        1 * action3.execute("value")
        0 * _
    }

    def "deduplicates actions"() {
        def action1 = Mock(Action)
        def action2 = Mock(Action)
        def action3 = Mock(Action)

        when:
        def set = ImmutableActionSet.of(action1, action2, ImmutableActionSet.of(action3, action1)).add(ImmutableActionSet.of(action2)).add(action3)

        then:
        !set.empty

        when:
        set.execute("value")

        then:
        1 * action1.execute("value")
        1 * action2.execute("value")
        1 * action3.execute("value")
        0 * _
    }

    def "ignores no-op actions when creating a composite"() {
        expect:
        ImmutableActionSet.of(Actions.doNothing(), Actions.doNothing()).is(ImmutableActionSet.empty())
    }

    def "ignores empty sets is a composite"() {
        expect:
        ImmutableActionSet.of(ImmutableActionSet.empty(), ImmutableActionSet.empty()).is(ImmutableActionSet.empty())
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy