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

org.gradle.internal.configurationcache.options.ConfigurationCacheSettingsFinalizedBuildOperationIntegTest.groovy Maven / Gradle / Ivy

/*
 * Copyright 2020 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.configurationcache.options

import org.gradle.integtests.fixtures.AbstractIntegrationSpec
import org.gradle.integtests.fixtures.BuildOperationsFixture
import org.gradle.integtests.fixtures.executer.GradleContextualExecuter
import org.gradle.internal.operations.trace.BuildOperationRecord
import spock.lang.IgnoreIf

@IgnoreIf({ GradleContextualExecuter.configCache })
class ConfigurationCacheSettingsFinalizedBuildOperationIntegTest extends AbstractIntegrationSpec {

    def operations = new BuildOperationsFixture(executer, temporaryFolder)

    def "emits once when not used"() {
        given:
        settingsFile << "includeBuild 'plugin'"
        file("buildSrc/src/main/java/Thing.java") << "class Thing {}"
        createDir("plugin") {
            file("settings.gradle") << ""
            file("build.gradle") << "plugins { id 'java' }"
            file("buildSrc/src/main/java/Thing.java") << "class Thing {}"
            file("src/main/java/Thing.java") << "class Thing {}"
        }
        file("build.gradle") << "task t"

        when:
        succeeds("t", "--no-configuration-cache")

        then:
        events().enabled == [false]
    }

    def "emits once when used"() {
        given:
        file("buildSrc/src/main/java/Thing.java") << "class Thing {}"
        file("build.gradle") << "task t"

        when:
        succeeds("t", "--configuration-cache")

        then:
        events().enabled == [true]

        when:
        succeeds("t", "--configuration-cache")

        then:
        events().enabled == [true]
    }

    List events() {
        List events = []
        operations.walk {
            events.addAll(it.progress.findAll {
                ConfigurationCacheSettingsFinalizedProgressDetails.isAssignableFrom(it.detailsType)
            })
        }
        events.collect {
            { -> it.details.enabled } as ConfigurationCacheSettingsFinalizedProgressDetails
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy