mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-04-27 04:42:48 +00:00
Update dependency
This commit is contained in:
parent
5a9d1fc40f
commit
de0e3663c0
14 changed files with 1554 additions and 609 deletions
18
.mvn/wrapper/maven-wrapper.properties
vendored
18
.mvn/wrapper/maven-wrapper.properties
vendored
|
@ -1,18 +1,2 @@
|
||||||
# Licensed to the Apache Software Foundation (ASF) under one
|
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.5/apache-maven-3.9.5-bin.zip
|
||||||
# or more contributor license agreements. See the NOTICE file
|
|
||||||
# distributed with this work for additional information
|
|
||||||
# regarding copyright ownership. The ASF licenses this file
|
|
||||||
# to you 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
|
|
||||||
#
|
|
||||||
# https://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.
|
|
||||||
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.1/apache-maven-3.9.1-bin.zip
|
|
||||||
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar
|
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
plugins {
|
plugins {
|
||||||
id 'java'
|
id 'java'
|
||||||
id 'org.springframework.boot' version '3.2.0'
|
id 'org.springframework.boot' version '3.2.0'
|
||||||
id 'io.spring.dependency-management' version '1.1.0'
|
id 'io.spring.dependency-management' version '1.1.4'
|
||||||
id 'org.graalvm.buildtools.native' version '0.9.28'
|
id 'org.graalvm.buildtools.native' version '0.9.28'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@ repositories {
|
||||||
}
|
}
|
||||||
|
|
||||||
ext.webjarsFontawesomeVersion = "4.7.0"
|
ext.webjarsFontawesomeVersion = "4.7.0"
|
||||||
ext.webjarsBootstrapVersion = "5.2.3"
|
ext.webjarsBootstrapVersion = "5.3.2"
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'org.springframework.boot:spring-boot-starter-cache'
|
implementation 'org.springframework.boot:spring-boot-starter-cache'
|
||||||
|
|
|
@ -2,7 +2,7 @@ version: "2.2"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
mysql:
|
mysql:
|
||||||
image: mysql:8.0
|
image: mysql:8.2
|
||||||
ports:
|
ports:
|
||||||
- "3306:3306"
|
- "3306:3306"
|
||||||
environment:
|
environment:
|
||||||
|
@ -16,7 +16,7 @@ services:
|
||||||
profiles:
|
profiles:
|
||||||
- mysql
|
- mysql
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres:15.3
|
image: postgres:16.1
|
||||||
ports:
|
ports:
|
||||||
- "5432:5432"
|
- "5432:5432"
|
||||||
environment:
|
environment:
|
||||||
|
|
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Binary file not shown.
4
gradle/wrapper/gradle-wrapper.properties
vendored
4
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -1,5 +1,7 @@
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
|
||||||
|
networkTimeout=10000
|
||||||
|
validateDistributionUrl=true
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
|
35
gradlew
vendored
35
gradlew
vendored
|
@ -55,7 +55,7 @@
|
||||||
# Darwin, MinGW, and NonStop.
|
# Darwin, MinGW, and NonStop.
|
||||||
#
|
#
|
||||||
# (3) This script is generated from the Groovy template
|
# (3) This script is generated from the Groovy template
|
||||||
# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
||||||
# within the Gradle project.
|
# within the Gradle project.
|
||||||
#
|
#
|
||||||
# You can find Gradle at https://github.com/gradle/gradle/.
|
# You can find Gradle at https://github.com/gradle/gradle/.
|
||||||
|
@ -80,13 +80,11 @@ do
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
|
# This is normally unused
|
||||||
|
# shellcheck disable=SC2034
|
||||||
APP_NAME="Gradle"
|
|
||||||
APP_BASE_NAME=${0##*/}
|
APP_BASE_NAME=${0##*/}
|
||||||
|
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
|
||||||
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
|
||||||
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
|
||||||
|
|
||||||
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||||
MAX_FD=maximum
|
MAX_FD=maximum
|
||||||
|
@ -133,22 +131,29 @@ location of your Java installation."
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
JAVACMD=java
|
JAVACMD=java
|
||||||
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
if ! command -v java >/dev/null 2>&1
|
||||||
|
then
|
||||||
|
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||||
|
|
||||||
Please set the JAVA_HOME variable in your environment to match the
|
Please set the JAVA_HOME variable in your environment to match the
|
||||||
location of your Java installation."
|
location of your Java installation."
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
# Increase the maximum file descriptors if we can.
|
# Increase the maximum file descriptors if we can.
|
||||||
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
|
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
|
||||||
case $MAX_FD in #(
|
case $MAX_FD in #(
|
||||||
max*)
|
max*)
|
||||||
|
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
|
||||||
|
# shellcheck disable=SC2039,SC3045
|
||||||
MAX_FD=$( ulimit -H -n ) ||
|
MAX_FD=$( ulimit -H -n ) ||
|
||||||
warn "Could not query maximum file descriptor limit"
|
warn "Could not query maximum file descriptor limit"
|
||||||
esac
|
esac
|
||||||
case $MAX_FD in #(
|
case $MAX_FD in #(
|
||||||
'' | soft) :;; #(
|
'' | soft) :;; #(
|
||||||
*)
|
*)
|
||||||
|
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
|
||||||
|
# shellcheck disable=SC2039,SC3045
|
||||||
ulimit -n "$MAX_FD" ||
|
ulimit -n "$MAX_FD" ||
|
||||||
warn "Could not set maximum file descriptor limit to $MAX_FD"
|
warn "Could not set maximum file descriptor limit to $MAX_FD"
|
||||||
esac
|
esac
|
||||||
|
@ -193,11 +198,15 @@ if "$cygwin" || "$msys" ; then
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Collect all arguments for the java command;
|
|
||||||
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
|
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||||
# shell script including quotes and variable substitutions, so put them in
|
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
||||||
# double quotes to make sure that they get re-expanded; and
|
|
||||||
# * put everything else in single quotes, so that it's not re-expanded.
|
# Collect all arguments for the java command:
|
||||||
|
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
|
||||||
|
# and any embedded shellness will be escaped.
|
||||||
|
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
|
||||||
|
# treated as '${Hostname}' itself on the command line.
|
||||||
|
|
||||||
set -- \
|
set -- \
|
||||||
"-Dorg.gradle.appname=$APP_BASE_NAME" \
|
"-Dorg.gradle.appname=$APP_BASE_NAME" \
|
||||||
|
|
1
gradlew.bat
vendored
1
gradlew.bat
vendored
|
@ -26,6 +26,7 @@ if "%OS%"=="Windows_NT" setlocal
|
||||||
|
|
||||||
set DIRNAME=%~dp0
|
set DIRNAME=%~dp0
|
||||||
if "%DIRNAME%"=="" set DIRNAME=.
|
if "%DIRNAME%"=="" set DIRNAME=.
|
||||||
|
@rem This is normally unused
|
||||||
set APP_BASE_NAME=%~n0
|
set APP_BASE_NAME=%~n0
|
||||||
set APP_HOME=%DIRNAME%
|
set APP_HOME=%DIRNAME%
|
||||||
|
|
||||||
|
|
34
pom.xml
34
pom.xml
|
@ -1,5 +1,7 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>org.springframework.samples</groupId>
|
<groupId>org.springframework.samples</groupId>
|
||||||
<artifactId>spring-petclinic</artifactId>
|
<artifactId>spring-petclinic</artifactId>
|
||||||
|
@ -22,16 +24,16 @@
|
||||||
<project.build.outputTimestamp>2023-05-10T07:42:50Z</project.build.outputTimestamp>
|
<project.build.outputTimestamp>2023-05-10T07:42:50Z</project.build.outputTimestamp>
|
||||||
|
|
||||||
<!-- Web dependencies -->
|
<!-- Web dependencies -->
|
||||||
<webjars-bootstrap.version>5.2.3</webjars-bootstrap.version>
|
<webjars-bootstrap.version>5.3.2</webjars-bootstrap.version>
|
||||||
<webjars-font-awesome.version>4.7.0</webjars-font-awesome.version>
|
<webjars-font-awesome.version>4.7.0</webjars-font-awesome.version>
|
||||||
|
|
||||||
<checkstyle.version>10.11.0</checkstyle.version>
|
<checkstyle.version>10.12.5</checkstyle.version>
|
||||||
<jacoco.version>0.8.10</jacoco.version>
|
<jacoco.version>0.8.11</jacoco.version>
|
||||||
<libsass.version>0.2.29</libsass.version>
|
<libsass.version>0.2.29</libsass.version>
|
||||||
<lifecycle-mapping>1.0.0</lifecycle-mapping>
|
<lifecycle-mapping>1.0.0</lifecycle-mapping>
|
||||||
<maven-checkstyle.version>3.2.2</maven-checkstyle.version>
|
<maven-checkstyle.version>3.3.1</maven-checkstyle.version>
|
||||||
<nohttp-checkstyle.version>0.0.11</nohttp-checkstyle.version>
|
<nohttp-checkstyle.version>0.0.11</nohttp-checkstyle.version>
|
||||||
<spring-format.version>0.0.39</spring-format.version>
|
<spring-format.version>0.0.40</spring-format.version>
|
||||||
|
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
|
@ -84,7 +86,7 @@
|
||||||
<scope>runtime</scope>
|
<scope>runtime</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- caching -->
|
<!-- Caching -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>javax.cache</groupId>
|
<groupId>javax.cache</groupId>
|
||||||
<artifactId>cache-api</artifactId>
|
<artifactId>cache-api</artifactId>
|
||||||
|
@ -94,7 +96,7 @@
|
||||||
<artifactId>caffeine</artifactId>
|
<artifactId>caffeine</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- webjars -->
|
<!-- Webjars -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.webjars.npm</groupId>
|
<groupId>org.webjars.npm</groupId>
|
||||||
<artifactId>bootstrap</artifactId>
|
<artifactId>bootstrap</artifactId>
|
||||||
|
@ -105,7 +107,6 @@
|
||||||
<artifactId>font-awesome</artifactId>
|
<artifactId>font-awesome</artifactId>
|
||||||
<version>${webjars-font-awesome.version}</version>
|
<version>${webjars-font-awesome.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- end of webjars -->
|
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
@ -140,18 +141,6 @@
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<dependencyManagement>
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.testcontainers</groupId>
|
|
||||||
<artifactId>testcontainers-bom</artifactId>
|
|
||||||
<version>${testcontainers.version}</version>
|
|
||||||
<type>pom</type>
|
|
||||||
<scope>import</scope>
|
|
||||||
</dependency>
|
|
||||||
</dependencies>
|
|
||||||
</dependencyManagement>
|
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
@ -370,7 +359,8 @@
|
||||||
<configuration>
|
<configuration>
|
||||||
<inputPath>${basedir}/src/main/scss/</inputPath>
|
<inputPath>${basedir}/src/main/scss/</inputPath>
|
||||||
<outputPath>${basedir}/src/main/resources/static/resources/css/</outputPath>
|
<outputPath>${basedir}/src/main/resources/static/resources/css/</outputPath>
|
||||||
<includePath>${project.build.directory}/webjars/META-INF/resources/webjars/bootstrap/${webjars-bootstrap.version}/scss/</includePath>
|
<includePath>
|
||||||
|
${project.build.directory}/webjars/META-INF/resources/webjars/bootstrap/${webjars-bootstrap.version}/scss/</includePath>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
|
|
|
@ -54,7 +54,7 @@ A similar setup is provided for MySQL and PostgreSQL if a persistent database co
|
||||||
You can start MySQL or PostgreSQL locally with whatever installer works for your OS or use docker:
|
You can start MySQL or PostgreSQL locally with whatever installer works for your OS or use docker:
|
||||||
|
|
||||||
```
|
```
|
||||||
docker run -e MYSQL_USER=petclinic -e MYSQL_PASSWORD=petclinic -e MYSQL_ROOT_PASSWORD=root -e MYSQL_DATABASE=petclinic -p 3306:3306 mysql:8.0
|
docker run -e MYSQL_USER=petclinic -e MYSQL_PASSWORD=petclinic -e MYSQL_ROOT_PASSWORD=root -e MYSQL_DATABASE=petclinic -p 3306:3306 mysql:8.2
|
||||||
```
|
```
|
||||||
|
|
||||||
or
|
or
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -87,7 +87,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script th:src="@{/webjars/bootstrap/5.2.3/dist/js/bootstrap.bundle.min.js}"></script>
|
<script th:src="@{/webjars/bootstrap/5.3.2/dist/js/bootstrap.bundle.min.js}"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
|
|
@ -44,7 +44,7 @@ class MySqlIntegrationTests {
|
||||||
|
|
||||||
@ServiceConnection
|
@ServiceConnection
|
||||||
@Container
|
@Container
|
||||||
static MySQLContainer<?> container = new MySQLContainer<>("mysql:5.7");
|
static MySQLContainer<?> container = new MySQLContainer<>("mysql:8.2");
|
||||||
|
|
||||||
@LocalServerPort
|
@LocalServerPort
|
||||||
int port;
|
int port;
|
||||||
|
|
|
@ -36,7 +36,7 @@ public class MysqlTestApplication {
|
||||||
@Profile("mysql")
|
@Profile("mysql")
|
||||||
@Bean
|
@Bean
|
||||||
static MySQLContainer<?> container() {
|
static MySQLContainer<?> container() {
|
||||||
return new MySQLContainer<>("mysql:5.7");
|
return new MySQLContainer<>("mysql:8.2");
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
|
|
|
@ -5,7 +5,9 @@
|
||||||
<stringProp name="TestPlan.comments"></stringProp>
|
<stringProp name="TestPlan.comments"></stringProp>
|
||||||
<boolProp name="TestPlan.functional_mode">false</boolProp>
|
<boolProp name="TestPlan.functional_mode">false</boolProp>
|
||||||
<boolProp name="TestPlan.serialize_threadgroups">false</boolProp>
|
<boolProp name="TestPlan.serialize_threadgroups">false</boolProp>
|
||||||
<elementProp name="TestPlan.user_defined_variables" elementType="Arguments" guiclass="ArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies" enabled="true">
|
<elementProp name="TestPlan.user_defined_variables" elementType="Arguments"
|
||||||
|
guiclass="ArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies"
|
||||||
|
enabled="true">
|
||||||
<collectionProp name="Arguments.arguments">
|
<collectionProp name="Arguments.arguments">
|
||||||
<elementProp name="PETCLINIC_HOST" elementType="Argument">
|
<elementProp name="PETCLINIC_HOST" elementType="Argument">
|
||||||
<stringProp name="Argument.name">PETCLINIC_HOST</stringProp>
|
<stringProp name="Argument.name">PETCLINIC_HOST</stringProp>
|
||||||
|
@ -27,9 +29,12 @@
|
||||||
<stringProp name="TestPlan.user_define_classpath"></stringProp>
|
<stringProp name="TestPlan.user_define_classpath"></stringProp>
|
||||||
</TestPlan>
|
</TestPlan>
|
||||||
<hashTree>
|
<hashTree>
|
||||||
<ThreadGroup guiclass="ThreadGroupGui" testclass="ThreadGroup" testname="User threads" enabled="true">
|
<ThreadGroup guiclass="ThreadGroupGui" testclass="ThreadGroup" testname="User threads"
|
||||||
|
enabled="true">
|
||||||
<stringProp name="ThreadGroup.on_sample_error">continue</stringProp>
|
<stringProp name="ThreadGroup.on_sample_error">continue</stringProp>
|
||||||
<elementProp name="ThreadGroup.main_controller" elementType="LoopController" guiclass="LoopControlPanel" testclass="LoopController" testname="Contr<74>leur Boucle" enabled="true">
|
<elementProp name="ThreadGroup.main_controller" elementType="LoopController"
|
||||||
|
guiclass="LoopControlPanel" testclass="LoopController" testname="Contr<74>leur Boucle"
|
||||||
|
enabled="true">
|
||||||
<boolProp name="LoopController.continue_forever">false</boolProp>
|
<boolProp name="LoopController.continue_forever">false</boolProp>
|
||||||
<stringProp name="LoopController.loops">10</stringProp>
|
<stringProp name="LoopController.loops">10</stringProp>
|
||||||
</elementProp>
|
</elementProp>
|
||||||
|
@ -44,12 +49,16 @@
|
||||||
<stringProp name="TestPlan.comments">Original : 500 - 10 - 10</stringProp>
|
<stringProp name="TestPlan.comments">Original : 500 - 10 - 10</stringProp>
|
||||||
</ThreadGroup>
|
</ThreadGroup>
|
||||||
<hashTree>
|
<hashTree>
|
||||||
<ConstantTimer guiclass="ConstantTimerGui" testclass="ConstantTimer" testname="Fixed time counter" enabled="true">
|
<ConstantTimer guiclass="ConstantTimerGui" testclass="ConstantTimer"
|
||||||
|
testname="Fixed time counter" enabled="true">
|
||||||
<stringProp name="ConstantTimer.delay">300</stringProp>
|
<stringProp name="ConstantTimer.delay">300</stringProp>
|
||||||
</ConstantTimer>
|
</ConstantTimer>
|
||||||
<hashTree />
|
<hashTree />
|
||||||
<ConfigTestElement guiclass="HttpDefaultsGui" testclass="ConfigTestElement" testname="Default HTTP parameters" enabled="true">
|
<ConfigTestElement guiclass="HttpDefaultsGui" testclass="ConfigTestElement"
|
||||||
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies" enabled="true">
|
testname="Default HTTP parameters" enabled="true">
|
||||||
|
<elementProp name="HTTPsampler.Arguments" elementType="Arguments"
|
||||||
|
guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies"
|
||||||
|
enabled="true">
|
||||||
<collectionProp name="Arguments.arguments" />
|
<collectionProp name="Arguments.arguments" />
|
||||||
</elementProp>
|
</elementProp>
|
||||||
<stringProp name="HTTPSampler.domain">${PETCLINIC_HOST}</stringProp>
|
<stringProp name="HTTPSampler.domain">${PETCLINIC_HOST}</stringProp>
|
||||||
|
@ -62,12 +71,14 @@
|
||||||
<stringProp name="HTTPSampler.concurrentPool">4</stringProp>
|
<stringProp name="HTTPSampler.concurrentPool">4</stringProp>
|
||||||
</ConfigTestElement>
|
</ConfigTestElement>
|
||||||
<hashTree />
|
<hashTree />
|
||||||
<CookieManager guiclass="CookiePanel" testclass="CookieManager" testname="HTTP cookie manager" enabled="true">
|
<CookieManager guiclass="CookiePanel" testclass="CookieManager"
|
||||||
|
testname="HTTP cookie manager" enabled="true">
|
||||||
<collectionProp name="CookieManager.cookies" />
|
<collectionProp name="CookieManager.cookies" />
|
||||||
<boolProp name="CookieManager.clearEachIteration">true</boolProp>
|
<boolProp name="CookieManager.clearEachIteration">true</boolProp>
|
||||||
</CookieManager>
|
</CookieManager>
|
||||||
<hashTree />
|
<hashTree />
|
||||||
<CounterConfig guiclass="CounterConfigGui" testclass="CounterConfig" testname="User Count" enabled="true">
|
<CounterConfig guiclass="CounterConfigGui" testclass="CounterConfig" testname="User Count"
|
||||||
|
enabled="true">
|
||||||
<stringProp name="CounterConfig.start">1</stringProp>
|
<stringProp name="CounterConfig.start">1</stringProp>
|
||||||
<stringProp name="CounterConfig.end">3</stringProp>
|
<stringProp name="CounterConfig.end">3</stringProp>
|
||||||
<stringProp name="CounterConfig.incr">1</stringProp>
|
<stringProp name="CounterConfig.incr">1</stringProp>
|
||||||
|
@ -76,7 +87,8 @@
|
||||||
<boolProp name="CounterConfig.per_user">false</boolProp>
|
<boolProp name="CounterConfig.per_user">false</boolProp>
|
||||||
</CounterConfig>
|
</CounterConfig>
|
||||||
<hashTree />
|
<hashTree />
|
||||||
<CounterConfig guiclass="CounterConfigGui" testclass="CounterConfig" testname="Pet Count" enabled="true">
|
<CounterConfig guiclass="CounterConfigGui" testclass="CounterConfig" testname="Pet Count"
|
||||||
|
enabled="true">
|
||||||
<stringProp name="CounterConfig.start">1</stringProp>
|
<stringProp name="CounterConfig.start">1</stringProp>
|
||||||
<stringProp name="CounterConfig.end">3</stringProp>
|
<stringProp name="CounterConfig.end">3</stringProp>
|
||||||
<stringProp name="CounterConfig.incr">1</stringProp>
|
<stringProp name="CounterConfig.incr">1</stringProp>
|
||||||
|
@ -85,8 +97,11 @@
|
||||||
<boolProp name="CounterConfig.per_user">false</boolProp>
|
<boolProp name="CounterConfig.per_user">false</boolProp>
|
||||||
</CounterConfig>
|
</CounterConfig>
|
||||||
<hashTree />
|
<hashTree />
|
||||||
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Home page" enabled="true">
|
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy"
|
||||||
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies" enabled="true">
|
testname="Home page" enabled="true">
|
||||||
|
<elementProp name="HTTPsampler.Arguments" elementType="Arguments"
|
||||||
|
guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies"
|
||||||
|
enabled="true">
|
||||||
<collectionProp name="Arguments.arguments" />
|
<collectionProp name="Arguments.arguments" />
|
||||||
</elementProp>
|
</elementProp>
|
||||||
<stringProp name="HTTPSampler.domain"></stringProp>
|
<stringProp name="HTTPSampler.domain"></stringProp>
|
||||||
|
@ -105,8 +120,11 @@
|
||||||
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
||||||
</HTTPSamplerProxy>
|
</HTTPSamplerProxy>
|
||||||
<hashTree />
|
<hashTree />
|
||||||
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="CSS" enabled="true">
|
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="CSS"
|
||||||
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies" enabled="true">
|
enabled="true">
|
||||||
|
<elementProp name="HTTPsampler.Arguments" elementType="Arguments"
|
||||||
|
guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies"
|
||||||
|
enabled="true">
|
||||||
<collectionProp name="Arguments.arguments" />
|
<collectionProp name="Arguments.arguments" />
|
||||||
</elementProp>
|
</elementProp>
|
||||||
<stringProp name="HTTPSampler.domain"></stringProp>
|
<stringProp name="HTTPSampler.domain"></stringProp>
|
||||||
|
@ -125,8 +143,11 @@
|
||||||
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
||||||
</HTTPSamplerProxy>
|
</HTTPSamplerProxy>
|
||||||
<hashTree />
|
<hashTree />
|
||||||
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="JS" enabled="true">
|
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="JS"
|
||||||
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies" enabled="true">
|
enabled="true">
|
||||||
|
<elementProp name="HTTPsampler.Arguments" elementType="Arguments"
|
||||||
|
guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies"
|
||||||
|
enabled="true">
|
||||||
<collectionProp name="Arguments.arguments" />
|
<collectionProp name="Arguments.arguments" />
|
||||||
</elementProp>
|
</elementProp>
|
||||||
<stringProp name="HTTPSampler.domain"></stringProp>
|
<stringProp name="HTTPSampler.domain"></stringProp>
|
||||||
|
@ -135,7 +156,8 @@
|
||||||
<stringProp name="HTTPSampler.response_timeout"></stringProp>
|
<stringProp name="HTTPSampler.response_timeout"></stringProp>
|
||||||
<stringProp name="HTTPSampler.protocol"></stringProp>
|
<stringProp name="HTTPSampler.protocol"></stringProp>
|
||||||
<stringProp name="HTTPSampler.contentEncoding"></stringProp>
|
<stringProp name="HTTPSampler.contentEncoding"></stringProp>
|
||||||
<stringProp name="HTTPSampler.path">${CONTEXT_WEB}/webjars/bootstrap/5.2.3/dist/js/bootstrap.bundle.min.js</stringProp>
|
<stringProp name="HTTPSampler.path">
|
||||||
|
${CONTEXT_WEB}/webjars/bootstrap/5.3.2/dist/js/bootstrap.bundle.min.js</stringProp>
|
||||||
<stringProp name="HTTPSampler.method">GET</stringProp>
|
<stringProp name="HTTPSampler.method">GET</stringProp>
|
||||||
<boolProp name="HTTPSampler.follow_redirects">true</boolProp>
|
<boolProp name="HTTPSampler.follow_redirects">true</boolProp>
|
||||||
<boolProp name="HTTPSampler.auto_redirects">false</boolProp>
|
<boolProp name="HTTPSampler.auto_redirects">false</boolProp>
|
||||||
|
@ -145,8 +167,11 @@
|
||||||
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
||||||
</HTTPSamplerProxy>
|
</HTTPSamplerProxy>
|
||||||
<hashTree />
|
<hashTree />
|
||||||
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Vets" enabled="true">
|
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Vets"
|
||||||
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies" enabled="true">
|
enabled="true">
|
||||||
|
<elementProp name="HTTPsampler.Arguments" elementType="Arguments"
|
||||||
|
guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies"
|
||||||
|
enabled="true">
|
||||||
<collectionProp name="Arguments.arguments" />
|
<collectionProp name="Arguments.arguments" />
|
||||||
</elementProp>
|
</elementProp>
|
||||||
<stringProp name="HTTPSampler.domain"></stringProp>
|
<stringProp name="HTTPSampler.domain"></stringProp>
|
||||||
|
@ -165,8 +190,11 @@
|
||||||
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
||||||
</HTTPSamplerProxy>
|
</HTTPSamplerProxy>
|
||||||
<hashTree />
|
<hashTree />
|
||||||
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Find owner" enabled="true">
|
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy"
|
||||||
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies" enabled="true">
|
testname="Find owner" enabled="true">
|
||||||
|
<elementProp name="HTTPsampler.Arguments" elementType="Arguments"
|
||||||
|
guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies"
|
||||||
|
enabled="true">
|
||||||
<collectionProp name="Arguments.arguments" />
|
<collectionProp name="Arguments.arguments" />
|
||||||
</elementProp>
|
</elementProp>
|
||||||
<stringProp name="HTTPSampler.domain"></stringProp>
|
<stringProp name="HTTPSampler.domain"></stringProp>
|
||||||
|
@ -185,8 +213,11 @@
|
||||||
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
||||||
</HTTPSamplerProxy>
|
</HTTPSamplerProxy>
|
||||||
<hashTree />
|
<hashTree />
|
||||||
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Find owner with lastname=""" enabled="true">
|
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy"
|
||||||
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies" enabled="true">
|
testname="Find owner with lastname=""" enabled="true">
|
||||||
|
<elementProp name="HTTPsampler.Arguments" elementType="Arguments"
|
||||||
|
guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies"
|
||||||
|
enabled="true">
|
||||||
<collectionProp name="Arguments.arguments" />
|
<collectionProp name="Arguments.arguments" />
|
||||||
</elementProp>
|
</elementProp>
|
||||||
<stringProp name="HTTPSampler.domain"></stringProp>
|
<stringProp name="HTTPSampler.domain"></stringProp>
|
||||||
|
@ -205,8 +236,11 @@
|
||||||
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
||||||
</HTTPSamplerProxy>
|
</HTTPSamplerProxy>
|
||||||
<hashTree />
|
<hashTree />
|
||||||
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Owner" enabled="true">
|
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Owner"
|
||||||
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies" enabled="true">
|
enabled="true">
|
||||||
|
<elementProp name="HTTPsampler.Arguments" elementType="Arguments"
|
||||||
|
guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies"
|
||||||
|
enabled="true">
|
||||||
<collectionProp name="Arguments.arguments" />
|
<collectionProp name="Arguments.arguments" />
|
||||||
</elementProp>
|
</elementProp>
|
||||||
<stringProp name="HTTPSampler.domain"></stringProp>
|
<stringProp name="HTTPSampler.domain"></stringProp>
|
||||||
|
@ -225,8 +259,11 @@
|
||||||
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
||||||
</HTTPSamplerProxy>
|
</HTTPSamplerProxy>
|
||||||
<hashTree />
|
<hashTree />
|
||||||
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="Edit Owner" enabled="true">
|
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy"
|
||||||
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies" enabled="true">
|
testname="Edit Owner" enabled="true">
|
||||||
|
<elementProp name="HTTPsampler.Arguments" elementType="Arguments"
|
||||||
|
guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies"
|
||||||
|
enabled="true">
|
||||||
<collectionProp name="Arguments.arguments" />
|
<collectionProp name="Arguments.arguments" />
|
||||||
</elementProp>
|
</elementProp>
|
||||||
<stringProp name="HTTPSampler.domain"></stringProp>
|
<stringProp name="HTTPSampler.domain"></stringProp>
|
||||||
|
@ -245,8 +282,11 @@
|
||||||
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
||||||
</HTTPSamplerProxy>
|
</HTTPSamplerProxy>
|
||||||
<hashTree />
|
<hashTree />
|
||||||
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="POST Edit Owner" enabled="true">
|
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy"
|
||||||
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies" enabled="true">
|
testname="POST Edit Owner" enabled="true">
|
||||||
|
<elementProp name="HTTPsampler.Arguments" elementType="Arguments"
|
||||||
|
guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies"
|
||||||
|
enabled="true">
|
||||||
<collectionProp name="Arguments.arguments">
|
<collectionProp name="Arguments.arguments">
|
||||||
<elementProp name="firstName" elementType="HTTPArgument">
|
<elementProp name="firstName" elementType="HTTPArgument">
|
||||||
<boolProp name="HTTPArgument.always_encode">false</boolProp>
|
<boolProp name="HTTPArgument.always_encode">false</boolProp>
|
||||||
|
@ -301,8 +341,11 @@
|
||||||
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
||||||
</HTTPSamplerProxy>
|
</HTTPSamplerProxy>
|
||||||
<hashTree />
|
<hashTree />
|
||||||
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="New Pet" enabled="true">
|
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy"
|
||||||
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies" enabled="true">
|
testname="New Pet" enabled="true">
|
||||||
|
<elementProp name="HTTPsampler.Arguments" elementType="Arguments"
|
||||||
|
guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies"
|
||||||
|
enabled="true">
|
||||||
<collectionProp name="Arguments.arguments" />
|
<collectionProp name="Arguments.arguments" />
|
||||||
</elementProp>
|
</elementProp>
|
||||||
<stringProp name="HTTPSampler.domain"></stringProp>
|
<stringProp name="HTTPSampler.domain"></stringProp>
|
||||||
|
@ -321,8 +364,11 @@
|
||||||
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
||||||
</HTTPSamplerProxy>
|
</HTTPSamplerProxy>
|
||||||
<hashTree />
|
<hashTree />
|
||||||
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="POST new pet" enabled="true">
|
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy"
|
||||||
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies" enabled="true">
|
testname="POST new pet" enabled="true">
|
||||||
|
<elementProp name="HTTPsampler.Arguments" elementType="Arguments"
|
||||||
|
guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies"
|
||||||
|
enabled="true">
|
||||||
<collectionProp name="Arguments.arguments">
|
<collectionProp name="Arguments.arguments">
|
||||||
<elementProp name="name" elementType="HTTPArgument">
|
<elementProp name="name" elementType="HTTPArgument">
|
||||||
<boolProp name="HTTPArgument.always_encode">false</boolProp>
|
<boolProp name="HTTPArgument.always_encode">false</boolProp>
|
||||||
|
@ -363,15 +409,19 @@
|
||||||
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
||||||
</HTTPSamplerProxy>
|
</HTTPSamplerProxy>
|
||||||
<hashTree />
|
<hashTree />
|
||||||
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="New visit" enabled="true">
|
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy"
|
||||||
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies" enabled="true">
|
testname="New visit" enabled="true">
|
||||||
|
<elementProp name="HTTPsampler.Arguments" elementType="Arguments"
|
||||||
|
guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies"
|
||||||
|
enabled="true">
|
||||||
<collectionProp name="Arguments.arguments" />
|
<collectionProp name="Arguments.arguments" />
|
||||||
</elementProp>
|
</elementProp>
|
||||||
<stringProp name="HTTPSampler.domain"></stringProp>
|
<stringProp name="HTTPSampler.domain"></stringProp>
|
||||||
<stringProp name="HTTPSampler.port"></stringProp>
|
<stringProp name="HTTPSampler.port"></stringProp>
|
||||||
<stringProp name="HTTPSampler.protocol"></stringProp>
|
<stringProp name="HTTPSampler.protocol"></stringProp>
|
||||||
<stringProp name="HTTPSampler.contentEncoding"></stringProp>
|
<stringProp name="HTTPSampler.contentEncoding"></stringProp>
|
||||||
<stringProp name="HTTPSampler.path">${CONTEXT_WEB}/owners/${count}/pets/${petCount}/visits/new</stringProp>
|
<stringProp name="HTTPSampler.path">
|
||||||
|
${CONTEXT_WEB}/owners/${count}/pets/${petCount}/visits/new</stringProp>
|
||||||
<stringProp name="HTTPSampler.method">GET</stringProp>
|
<stringProp name="HTTPSampler.method">GET</stringProp>
|
||||||
<boolProp name="HTTPSampler.follow_redirects">true</boolProp>
|
<boolProp name="HTTPSampler.follow_redirects">true</boolProp>
|
||||||
<boolProp name="HTTPSampler.auto_redirects">false</boolProp>
|
<boolProp name="HTTPSampler.auto_redirects">false</boolProp>
|
||||||
|
@ -382,8 +432,11 @@
|
||||||
<stringProp name="HTTPSampler.response_timeout"></stringProp>
|
<stringProp name="HTTPSampler.response_timeout"></stringProp>
|
||||||
</HTTPSamplerProxy>
|
</HTTPSamplerProxy>
|
||||||
<hashTree />
|
<hashTree />
|
||||||
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="POST new visit" enabled="true">
|
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy"
|
||||||
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies" enabled="true">
|
testname="POST new visit" enabled="true">
|
||||||
|
<elementProp name="HTTPsampler.Arguments" elementType="Arguments"
|
||||||
|
guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="Variables pr<70>-d<>finies"
|
||||||
|
enabled="true">
|
||||||
<collectionProp name="Arguments.arguments">
|
<collectionProp name="Arguments.arguments">
|
||||||
<elementProp name="date" elementType="HTTPArgument">
|
<elementProp name="date" elementType="HTTPArgument">
|
||||||
<boolProp name="HTTPArgument.always_encode">false</boolProp>
|
<boolProp name="HTTPArgument.always_encode">false</boolProp>
|
||||||
|
@ -405,7 +458,8 @@
|
||||||
<stringProp name="HTTPSampler.port"></stringProp>
|
<stringProp name="HTTPSampler.port"></stringProp>
|
||||||
<stringProp name="HTTPSampler.protocol"></stringProp>
|
<stringProp name="HTTPSampler.protocol"></stringProp>
|
||||||
<stringProp name="HTTPSampler.contentEncoding"></stringProp>
|
<stringProp name="HTTPSampler.contentEncoding"></stringProp>
|
||||||
<stringProp name="HTTPSampler.path">${CONTEXT_WEB}/owners/${count}/pets/${petCount}/visits/new</stringProp>
|
<stringProp name="HTTPSampler.path">
|
||||||
|
${CONTEXT_WEB}/owners/${count}/pets/${petCount}/visits/new</stringProp>
|
||||||
<stringProp name="HTTPSampler.method">POST</stringProp>
|
<stringProp name="HTTPSampler.method">POST</stringProp>
|
||||||
<boolProp name="HTTPSampler.follow_redirects">true</boolProp>
|
<boolProp name="HTTPSampler.follow_redirects">true</boolProp>
|
||||||
<boolProp name="HTTPSampler.auto_redirects">false</boolProp>
|
<boolProp name="HTTPSampler.auto_redirects">false</boolProp>
|
||||||
|
@ -415,7 +469,8 @@
|
||||||
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
|
||||||
</HTTPSamplerProxy>
|
</HTTPSamplerProxy>
|
||||||
<hashTree />
|
<hashTree />
|
||||||
<ResultCollector guiclass="ViewResultsFullVisualizer" testclass="ResultCollector" testname="Results" enabled="false">
|
<ResultCollector guiclass="ViewResultsFullVisualizer" testclass="ResultCollector"
|
||||||
|
testname="Results" enabled="false">
|
||||||
<boolProp name="ResultCollector.error_logging">false</boolProp>
|
<boolProp name="ResultCollector.error_logging">false</boolProp>
|
||||||
<objProp>
|
<objProp>
|
||||||
<name>saveConfig</name>
|
<name>saveConfig</name>
|
||||||
|
@ -448,7 +503,8 @@
|
||||||
<stringProp name="filename"></stringProp>
|
<stringProp name="filename"></stringProp>
|
||||||
</ResultCollector>
|
</ResultCollector>
|
||||||
<hashTree />
|
<hashTree />
|
||||||
<ResultCollector guiclass="StatVisualizer" testclass="ResultCollector" testname="Aggregated report" enabled="true">
|
<ResultCollector guiclass="StatVisualizer" testclass="ResultCollector"
|
||||||
|
testname="Aggregated report" enabled="true">
|
||||||
<boolProp name="ResultCollector.error_logging">false</boolProp>
|
<boolProp name="ResultCollector.error_logging">false</boolProp>
|
||||||
<objProp>
|
<objProp>
|
||||||
<name>saveConfig</name>
|
<name>saveConfig</name>
|
||||||
|
|
Loading…
Reference in a new issue