当前位置: 首页 > 知识库问答 >
问题:

IntelliJ和gatling没有发现要运行的模拟

滑令
2023-03-14

我对IntelliJ和gatling有意见。

当我运行测试时,选通返回一条消息,指出“没有要运行的模拟”

[INFO] 
[INFO] --- gatling-maven-plugin:3.0.5:test (default) @ com.ffTests ---
[ERROR] No simulations to run
No simulations to run

Caused by: org.apache.maven.plugin.MojoFailureException: No simulations to run
    at io.gatling.mojo.GatlingMojo.simulations (GatlingMojo.java:372)
    at io.gatling.mojo.GatlingMojo.execute (GatlingMojo.java:213)
    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:137)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:210)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:156)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:148)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
    at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
    at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
    at org.apache.maven.cli.MavenCli.execute (MavenCli.java:957)
    at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:289)
    at org.apache.maven.cli.MavenCli.main (MavenCli.java:193)
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke (Method.java:564)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:282)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:

我的代码如下所示:

package Performance
import com.intuit.karate.gatling.PreDef._
import io.gatling.core.Predef._
import scala.concurrent.duration._

class performanceGo extends Simulation{

  val getReason = scenario("login").exec(karateFeature("classpath:performance/TestPerformance.feature"))

 setUp(
    getReason.inject(rampUsers( users= 10).during(10 seconds))
    )
}

上面的类必须执行一个名为TestPerformance的Cumber特性。特色

pom依赖项是


        <dependency>
            <groupId>com.intuit.karate</groupId>
            <artifactId>karate-apache</artifactId>
            <version>0.9.5</version>
        </dependency>            
        <dependency>
            <groupId>com.intuit.karate</groupId>
            <artifactId>karate-junit5</artifactId>
             <version>0.9.5</version>
        </dependency>

        <dependency>
            <groupId>com.intuit.karate</groupId>
            <artifactId>karate-gatling</artifactId>
            <version>${karate.version}</version>
            <scope>test</scope>
        </dependency>

我使用的插件是

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>${maven.compiler.version}</version>
                <configuration>
                    <encoding>UTF-8</encoding>
                    <source>${java.version}</source>
                    <target>${java.version}</target>
                    <compilerArgument>-Werror</compilerArgument>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.22.2</version>
            </plugin>

            <plugin>
                <groupId>io.gatling</groupId>
                <artifactId>gatling-maven-plugin</artifactId>
                <version>3.0.5</version>
                <configuration>
                    <simulationsFolder>src/test/java</simulationsFolder>
                    <includes>
                        <include>mock.CatsKarateSimulation</include>
                    </includes>
                        <disableCompiler>true</disableCompiler>
                </configuration>
                <executions>
                    <execution>
                        <phase>test</phase>
                        <goals>
                            <goal>test</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>io.gatling.frontline</groupId>
                <artifactId>frontline-maven-plugin</artifactId>
                <version>1.0.3</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>package</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

scala插件版本是"2019.3.17",我使用的是jre1.8.0_241。

你知道会发生什么事吗?

共有2个答案

杜嘉慕
2023-03-14

这个问题与pom有关。xm和JAVA_主变量。

解决方案:

java_home="C:\Program Files\Java\jdk-14"

波姆。xml

<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.example</groupId>
<artifactId>com.ffTests</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <java.version>1.8</java.version>
    <maven.compiler.version>3.6.0</maven.compiler.version>
    <karate.version>0.9.5</karate.version>
    <gatling.plugin.version>3.0.2</gatling.plugin.version>
</properties>

<dependencies>
    <dependency>
        <groupId>com.intuit.karate</groupId>
        <artifactId>karate-apache</artifactId>
        <version>${karate.version}</version>
    </dependency>
    <dependency>
        <groupId>com.intuit.karate</groupId>
        <artifactId>karate-gatling</artifactId>
        <version>${karate.version}</version>
        <scope>test</scope>
    </dependency>
</dependencies>

<build>
    <testResources>
        <testResource>
            <directory>src/test/java</directory>
            <excludes>
                <exclude>**/*.java</exclude>
            </excludes>
        </testResource>
    </testResources>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>${maven.compiler.version}</version>
            <configuration>
                <encoding>UTF-8</encoding>
                <source>${java.version}</source>
                <target>${java.version}</target>
                <compilerArgument>-Werror</compilerArgument>
            </configuration>
        </plugin>
        <plugin>
            <groupId>io.gatling</groupId>
            <artifactId>gatling-maven-plugin</artifactId>
            <version>${gatling.plugin.version}</version>
            <configuration>
                <simulationsFolder>src/test/java</simulationsFolder>
            </configuration>
            <executions>
                <execution>
                    <phase>test</phase>
                    <goals>
                        <goal>test</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>
戚承业
2023-03-14

可能只是因为您没有指向正确的scala文件。您使用的是一个名为Performance的包,但是您的pom。xml指的是mock。CatsKarateSimulation

 类似资料:
  • 我正在尝试使用IntelliJ调试Spring Boot项目。突然,我的线路在工作了几年后无法调试。 它将通过类进行调试,但当我尝试运行一个方法时,它不会看到断点。我之前收到了一个应用程序上下文消息,我修复了它,但它仍然不起作用。https://www.jetbrains.com/help/idea/2021.2/spring-support.html#spring-file-set 它将在后台看

  • 我将我的工作区从Eclipse迁移到Intellij,在Intellij中,我有一个从两个模块构建的项目,运行配置设置在一个模块上,但主类位于第二个模块中。 在Eclipse中,它工作正常,但在Intellij中,我得到“错误:无法找到或加载主类[类名]”。 我在项目结构中创建了一个依赖项,并对运行的配置进行了大量操作,但这并没有起到任何作用。 有什么想法吗?有没有人在intellij中对这种结构

  • 问题内容: 我有几个服务器: Jenkins Gitlab 在gitlab上,我有一个webhook: 在詹金斯身上,我有一份工作: 源代码管理: Git: gitlab) 凭证:密钥对有效 要建立的分支:* / master 仓库浏览器:gitlab 版本:6.5.1 轮询SCM 有什么线索为什么詹金斯不能胜任这份工作? 问题答案: 在Jenkins上,您应禁用并将其设置为(not )

  • 我可以跑: 特定的scala测试 右键单击测试并选择 或者如果我以前运行过一次,请选择运行菜单中的测试> null

  • 我试图导入并运行IntelliJ git4idea(Git Integration)插件,以便发挥作用并贡献一些我自己的代码。 我从github repo中提取了Intellij社区版,并将git4idea插件作为一个项目导入。我在运行Intellij社区版 我的主要问题是: 导入所有模块后,git4idea模块将作为通用模块类型出现,而不是插件模块类型。 这意味着,当试图创建一个新的run\de

  • 问题内容: 我通过键入crontab -e在ubuntu环境中为root用户设置了cronjob 但是cronjon不会运行。我已经尝试检查cronjob是否正在使用 pgrep cron 并给出了进程ID3033。shell脚本调用了python文件,并用于发送电子邮件。可以运行python文件。没有错误,但cron不运行。daily.sh文件中包含以下代码。 问题答案: WTF ?! 我的cr