如何使用CUnit测试具有多个组件的本机应用程序

时间:2017-04-18 17:51:34

标签: gradle cunit

我有一个gradle项目,用于gradle(版本2.10)中由多个组件构成的本机c应用程序:

components {

   component_1(NativeLibrarySpec)
   component_2(NativeLibrarySpec)
   ...
   component_n(NativeLibrarySpec)

   main_component(NativeExecutableSpec){
       sources {
            c.lib library: "component_1", linkage: "static"
            c.lib library: "component_2", linkage: "static"
            ...
            c.lib library: "component_n", linkage: "static"
        }

   }
}

以这种形式提供应用程序的主要思想是更容易测试单个组件。但是,我有两个大问题:

main_component是一个应用程序,因此有一个主要功能,这会产生此错误:multiple definition of 'main' ... gradle_cunit_main.c:(.text+0x0): first defined here。这是预期的,并在文档中提到,但我想知道是否有办法避免这个问题,例如,阻止主要组件包含在测试中。这与下一个问题有关

当我尝试按如下方式定义要测试的组件时,CUnit插件(从gradle版本2.10开始)会抱怨:

testSuites {
    component_1Test(CUnitTestSuiteSpec){
            testing $.components.component_1
        }
   }
}
gradle抱怨:

  

无法使用创建规则创建“testSuites.component_1Test”   “component_1Test(org.gradle.nativeplatform.test.cunit.CUnitTestSuiteSpec)   {...} @ build.gradle第68行,第9列作为规则   'CUnitPlugin.Rules #createCUnitTestSuitePerComponent>   已注册create(component_1Test)'以创建此模型   元件

总之,我想指示cunit插件只测试一些组件,并防止主要组件(带有main函数)被编译用于测试。再次,请注意我正在使用gradle 2.10并且无法升级到更新的版本,因为这会制止我们的CI工具链。

提前感谢您的意见。

1 个答案:

答案 0 :(得分:0)

以下是如何构建项目以允许对组件进行单元测试,但是阻止对主程序进行单元测试:拆分子项目中的组件并将cunit插件应用到子项目中,如图所示下面:

project(':libs'){
apply plugin: 'c'
apply plugin: 'cunit'
model{

    repositories {
        libs(PrebuiltLibraries) {
            cunit {
                headers.srcDir "/usr/include/"
                    binaries.withType(StaticLibraryBinary) {
                        staticLibraryFile = file("/usr/lib/x86_64-linux-gnu/libcunit.a")
                    }
            }
        }
    }

    components {
        component_1(NativeLibrarySpec)
        component_2(NativeLibrarySpec)
        ...
        component_n(NativeLibrarySpec)
    }

    binaries {
        withType(CUnitTestSuiteBinarySpec) {
            lib library: "cunit", linkage: "static"
        }
    }
}
}
apply plugin: 'c'
model {
    components{
        myprogram(NativeExecutableSpec) {
            sources.c {
                lib project: ':libs', library: 'component_1', linkage: 'static'
                lib project: ':libs', library: 'component_2', linkage: 'static'
                lib project: ':libs', library: "component_n", linkage: 'static'
                source {
                     srcDir "src/myprogram/c"
                          include "**/*.c"
                }
            }
        }
    }
}