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

org.gradle.language.nativeplatform.internal.incremental.DefaultSourceIncludesParserTest.groovy Maven / Gradle / Ivy

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

import org.gradle.language.nativeplatform.internal.Include
import org.gradle.language.nativeplatform.internal.IncludeDirectives
import org.gradle.language.nativeplatform.internal.incremental.sourceparser.CSourceParser
import org.gradle.language.nativeplatform.internal.incremental.sourceparser.DefaultInclude
import spock.lang.Specification

class DefaultSourceIncludesParserTest extends Specification {
    def sourceParser = Mock(CSourceParser)
    def sourceIncludes = Mock(IncludeDirectives)

    def "returns a filtered SourceIncludes when not importAware"() {
        given:
        def file = new File("test")

        when:
        def includesParser = new DefaultSourceIncludesParser(sourceParser, false)

        1 * sourceParser.parseSource(file) >> sourceIncludes
        1 * sourceIncludes.includesOnly >> ['"quoted"', '', 'DEFINED'].collect { include(it) }
        0 * sourceIncludes._

        and:
        def includes = includesParser.parseIncludes(file)

        then:
        includes.quotedIncludes.collect { it.value } == ["quoted"]
        includes.systemIncludes.collect { it.value } == ["system"]
        includes.macroIncludes.collect { it.value } == ["DEFINED"]
    }


    def "returns the parsed SourceIncludes when importAware"() {
        given:
        def file = new File("test")

        when:
        def includesParser = new DefaultSourceIncludesParser(sourceParser, true)

        1 * sourceParser.parseSource(file) >> sourceIncludes
        0 * sourceIncludes._

        and:
        def includes = includesParser.parseIncludes(file)

        then:
        includes == sourceIncludes
    }

    Include include(String value, boolean isImport = false) {
        return DefaultInclude.parse(value, isImport)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy