- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 Bamboo 为我的 Mulesoft 代码放置一个 CI 管道。我的 bamboo 作业中有结帐、构建、测试和部署步骤。该作业正在成功测试并在/target/munit 中创建测试覆盖率报告,报告测试结果,但在测试步骤结束时,日志显示“任务失败,因为预期有测试用例,但没有找到。”整个工作都失败了。我不明白为什么?没有错误,日志中有警告。只是线和步骤失败了。知道为什么吗?以下是我的 pom.xml、命令和日志。
** simple 2018 年 10 月 14 日 13:47:56 任务失败,因为预期有测试用例,但没有找到。简单 2018 年 10 月 14 日 13:47:56 完成任务“测试代码”,结果:失败****
我的命令如下:
mvn clean test -s settings.xml
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.hcl.adc.mule</groupId>
<artifactId>mycontacts-mule-api</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>mule</packaging>
<name>Mule mycontacts-mule-api Application</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<mule.version>3.9.0</mule.version>
<mule.munit.support.version>3.9.1</mule.munit.support.version>
<munit.version>1.3.7</munit.version>
<mule.tools.version>1.7</mule.tools.version>
<application-name>mycontacts-mule-api</application-name>
<proxy.api.version>1.0:15535407</proxy.api.version>
<implementation.host>null</implementation.host>
<implementation.port>80</implementation.port>
<implementation.path>/api</implementation.path>
<deployment-type>Cloudhub</deployment-type>
<businessGroup>PARADIGM</businessGroup>
<workerType>Small</workerType>
<workers>1</workers>
<environment>SIT</environment>
<maven-deploy-plugin-version>2.8</maven-deploy-plugin-version>
<mule-maven-plugin-version>2.0</mule-maven-plugin-version>
<deploy.prop.deployEnv>sit</deploy.prop.deployEnv>
<deploy.prop.envPrefix>sit</deploy.prop.envPrefix>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven-deploy-plugin-version}</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.mule.tools.maven</groupId>
<artifactId>mule-maven-plugin</artifactId>
<version>${mule-maven-plugin-version}</version>
<configuration>
<deploymentType>${deployment-type}</deploymentType>
<muleVersion>${mule.version}</muleVersion>
<applicationName>${application-name}</applicationName>
<username>${mule-username}</username>
<password>${mule-password}</password>
<businessGroup>${business-group}</businessGroup>
<redeploy>true</redeploy>
<workerType>${worker-size}</workerType>
<workers>${worker-count}</workers>
<environment>${env-name}</environment>
<properties>
<anypoint.platform.client_id>${mule-client-id}</anypoint.platform.client_id>
<anypoint.platform.client_secret>${mule-client-secret}</anypoint.platform.client_secret>
<anypoint.platform.analytics_base_uri>https://analytics-ingest.anypoint.mulesoft.com</anypoint.platform.analytics_base_uri>
<anypoint.platform.platform_base_uri>https://anypoint.mulesoft.com/apiplatform</anypoint.platform.platform_base_uri>
<anypoint.platform.coreservice_base_uri>https://anypoint.mulesoft.com/accounts</anypoint.platform.coreservice_base_uri>
<anypoint.platform.contracts_base_uri>https://anypoint.mulesoft.com/apigateway/ccs</anypoint.platform.contracts_base_uri>
<deploy-env>${deploy.prop.deployEnv}</deploy-env>
<env>${deploy.prop.env}</env>
<enable.analytics>true</enable.analytics>
<proxy.api.version>1.0:15535407</proxy.api.version>
<implementation.host>null</implementation.host>
<implementation.port>80</implementation.port>
<implementation.path>/api</implementation.path>
</properties>
</configuration>
<executions>
<execution>
<id>deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.mulesoft.munit.tools</groupId>
<artifactId>munit-maven-plugin</artifactId>
<version>${munit.version}</version>
<executions>
<execution>
<id>test</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
<configuration>
<coverage>
<ignoreFlows>
<ignoreFlow>mycontacts-mule-api-console</ignoreFlow>
<ignoreFlow>mycontacts-mule-api-apiKitGlobalExceptionMapping</ignoreFlow>
</ignoreFlows>
<runCoverage>true</runCoverage>
<formats>
<format>html</format>
<format>console</format>
<format>json</format>
</formats>
</coverage>
</configuration>
</plugin>
<plugin>
<groupId>org.mule.tools.maven</groupId>
<artifactId>mule-app-maven-plugin</artifactId>
<version>${mule.tools.version}</version>
<extensions>true</extensions>
<configuration>
<copyToAppsDirectory>true</copyToAppsDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>add-resource</id>
<phase>generate-resources</phase>
<goals>
<goal>add-resource</goal>
</goals>
<configuration>
<resources>
<resource>
<directory>src/main/app/</directory>
</resource>
<resource>
<directory>mappings/</directory>
</resource>
<resource>
<directory>src/main/api/</directory>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<testResources>
<testResource>
<directory>src/test/munit</directory>
</testResource>
<testResource>
<directory>src/test/resources</directory>
</testResource>
</testResources>
</build>
<!-- Mule Dependencies -->
<dependencies>
<!-- Xml configuration -->
<dependency>
<groupId>com.mulesoft.muleesb</groupId>
<artifactId>mule-core-ee</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<!-- Xml configuration -->
<dependency>
<groupId>com.mulesoft.muleesb.modules</groupId>
<artifactId>mule-module-spring-config-ee</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<!-- Mule Transports -->
<dependency>
<groupId>org.mule.transports</groupId>
<artifactId>mule-transport-file</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.transports</groupId>
<artifactId>mule-transport-http</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.mulesoft.muleesb.transports</groupId>
<artifactId>mule-transport-jdbc-ee</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.mulesoft.muleesb.transports</groupId>
<artifactId>mule-transport-jms-ee</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.transports</groupId>
<artifactId>mule-transport-vm</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<!-- Mule Modules -->
<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-scripting</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-xml</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<!-- for testing -->
<dependency>
<groupId>org.mule.tests</groupId>
<artifactId>mule-tests-functional</artifactId>
<version>${mule.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-apikit</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<!-- dependencies for Mule CoE Begins -->
<!-- https://mvnrepository.com/artifact/guru.nidi.raml/raml-tester-standalone -->
<dependency>
<groupId>com.mulesoft.anypoint</groupId>
<artifactId>mule-module-proxy</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.mulesoft.anypoint</groupId>
<artifactId>mule-module-raml-el-gw</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.mulesoft.anypoint</groupId>
<artifactId>mule-module-spring-config-gw</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.mulesoft.anypoint</groupId>
<artifactId>api-gateway-client</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.mulesoft.anypoint</groupId>
<artifactId>gateway-core</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.mulesoft.munit</groupId>
<artifactId>mule-munit-support</artifactId>
<version>${mule.munit.support.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.mulesoft.munit</groupId>
<artifactId>munit-runner</artifactId>
<version>${munit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.mulesoft.munit.utils</groupId>
<artifactId>munit-dbserver-module</artifactId>
<version>1.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-db</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-ws</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.mulesoft.weave</groupId>
<artifactId>mule-plugin-weave</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-json</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-cxf</artifactId>
<version>${mule.version}</version>
<scope>provided</scope>
</dependency>
<!-- dependencies for Mule CoE Ends -->
</dependencies>
<repositories>
<repository>
<id>mulesoft-releases</id>
<name>MuleSoft Releases Repository</name>
<url>http://repository.mulesoft.org/releases/</url>
<layout>default</layout>
</repository>
<repository>
<id>mule-ee-releases</id>
<name>MuleEE Releases Repository</name>
<url>https://repository-master.mulesoft.org/nexus/content/repositories/releases-ee/</url>
</repository>
<repository>
<id>nexus-ee</id>
<name>nexus-ee</name>
<url>https://repository.mulesoft.org/nexus-ee/content/repositories/releases-ee/</url>
<layout>default</layout>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>mulesoft-release</id>
<name>mulesoft release repository</name>
<layout>default</layout>
<url>http://repository.mulesoft.org/releases/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>mule-public</id>
<url>https://repository.mulesoft.org/nexus/content/repositories/releases</url>
</pluginRepository>
</pluginRepositories>
</project>
最佳答案
升级 munit 插件版本解决了这个问题!
关于testing - 运行 munit 测试任务后 bamboo 作业失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52803676/
我已经开始从 Mule 3.9 迁移到 4.1,这意味着迁移到 Anypoint Studio 7 和 MUnit 2.1 以前,在 MUnit 1.3 中,通过扩展 FunctionalMunitS
我的 Mule 项目中有示例 Munit 测试用例。但是文件总是在处显示错误标记标记在配置文件的开头。 注:但目前我能够执行我的 munit 测试用例。 错误是: cvc-complex-type.2
我有一个自定义代理,我正在尝试通过创建一个简单的流程并调用该代理来测试自定义代理的代码,但出于某种原因,Munit 在运行我的流程时似乎没有调用自定义代理。这是自定义代理 xml:
有没有办法让我使用 MUnit 结束测试并在调用子流程时添加断言?我想将测试分成更小的部分。 最佳答案 您将不得不模拟子流程的结果。 为此,您必须使用 MUnit 中的 Mock 组件。 它的作用是,
我正在尝试编写一个 mule munit 测试(在 java 中)并且我想检查消息是否通过(或在这种情况下退出)特定的出站端点,因为流中存在路由并且消息可以根据条件通过不同的? 我的设置是实际使用 2
我正在编写一个负面测试用例,其中我必须在流程中创建异常。我希望全局异常策略能够捕获它,以便我可以断言响应。在 GlobalExceptionStrategy 内部,我们根据异常错误代码设置一些错误代码
有没有办法断言流引用在 Mulesoft 中引发了异常?搜索谷歌和文档没有发现任何东西。 基本上,我正在测试一个子流,如果某个项目存在,则会引发 NotFound 异常,但 MUnit 在收到错误时会
我正在尝试使用位于此处的 MUnit FTP 服务器:https://docs.mulesoft.com/mule-user-guide/v/3.7/munit-ftp-server 几个示例引用了
我的流程中有一些占位符。这些占位符的值在属性文件(在类路径中)中指定。我正在使用java做munit。目前,这些占位符不会被属性文件中的值替换。知道如何在运行 munit 时加载此文件吗? 我的装备是
我有一个流程,我正在尝试使用 Munit 在 Mule 中测试基本的 HTTP 流程,该流程看起来像这样: .... 对于 Munit,我使用以下方式调用流程
我正在尝试使用 Bamboo 为我的 Mulesoft 代码放置一个 CI 管道。我的 bamboo 作业中有结帐、构建、测试和部署步骤。该作业正在成功测试并在/target/munit 中创建测试覆
我正忙于为子流程编写 MUnit 测试用例。我模拟了一个组件来防止发送电子邮件,但主要是为了确认我的流程正在将正确的属性传递给该 SMTP 组件。 我可以使用 validator 来确认调用是否与预期
我已经为通过 APIKit 路由器生成的流创建了 Munit 测试用例。但是在运行测试套件时,我遇到了以下异常: Exception in thread "main" java.lang.Runtim
我正在编写一个 MUnit 测试,并想模拟我测试中使用的一些 bean,但我不知道如何将它们注入(inject)到流程中。这在 MUnit 中可能吗? 最佳答案 我知道您的应用程序中有一个 bean,
我在一个共享通用设置(和拆卸)过程的单个 .mt 文件中编写了许多测试用例。我希望看到类似 JUnit 的 @Before/@After ,但是 MUnit 包中的任何内容都没有让我跳出来,这可以实现
我有以下 Mule 流,它被构建为从外部 API 检索一些细节,然后将其映射到一些有效负载以返回到调用客户端: ... 我创建了以下单元测试,其
我正在尝试运行 MUnit 测试,每次尝试运行它时,我都会在控制台中收到此错误: 无法识别的选项:-esb错误:无法创建 Java 虚拟机。错误:发生致命异常。程序将退出。 我尝试访问 ini 文件,
我正在尝试在 MUnit 中测试 APIKit。最初我在 MUnit 中使用 http 请求来调用我的流,然后 APIKit 会将请求路由到我的逻辑所在的正确子流。现在我想模拟子流的元素之一,所以我试
我们在旧版本的 MUnit 中使用类 org.mule.munit.MunitPollManager(在 munit-utils 包中)来确保我们的轮询器在流开始时没有启动,但是当 Munit 迁移时
尝试编译自动生成的示例测试(使用标准 haxelib run munit gen 制作,然后使用 haxelib run munit t 运行,带或不带 -coverage)用于 HaxeFlixel
我是一名优秀的程序员,十分优秀!