Skip to content

Commit

Permalink
WFNEWS-1087 (#802)
Browse files Browse the repository at this point in the history
* Prevent non-out in out count, fix area calc

Prevent calculating area from previous year fires into current year fires that may have carried over.

* WFNEWS-1087

Adding dockerfile, pm jmx script from WFONE. Note that this will need further enhancement to run additional tests for WFNEWS repo merge
  • Loading branch information
dhlevi authored Jul 4, 2023
1 parent 47adc98 commit e2df9aa
Show file tree
Hide file tree
Showing 4 changed files with 21,043 additions and 0 deletions.
27 changes: 27 additions & 0 deletions performance-qa/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
FROM adoptopenjdk/openjdk8:jdk8u252-b09-alpine
LABEL maintainer="Nithin Kuruba"
ENV JMETER_VERSION 5.2.1
ENV JMETER_HOME /opt/apache-jmeter-${JMETER_VERSION}
ENV JMETER_BIN ${JMETER_HOME}/bin
ENV ALPN_VERSION 8.1.13.v20181017
ENV PATH ${JMETER_BIN}:$PATH
COPY run.sh /usr/local/bin/
COPY /tests/*.jmx /usr/local/bin/
RUN mkdir -p ${JMETER_HOME}/results
COPY /binaries/apache-jmeter-${JMETER_VERSION}.tgz /tmp/
RUN chmod +x /usr/local/bin/run.sh \
&& apk add --no-cache \
su-exec \
curl \
net-tools \
ttf-dejavu \
&& cd /tmp/ \
&& mkdir -p /opt/ \
&& tar x -z -f apache-jmeter-${JMETER_VERSION}.tgz -C /opt \
&& rm -R -f apache* \
&& chmod +x ${JMETER_HOME}/bin/*.sh \
&& jmeter -n -t /usr/local/bin/public-mobile-tests.jmx -l ${JMETER_HOME}/results/public-mobile-tests.jtl \
&& rm -fr /tmp/*
WORKDIR /jmeter
ENTRYPOINT ["/usr/local/bin/run.sh"]
CMD ["jmeter", "--?"]
Binary file added performance-qa/binaries/apache-jmeter-5.2.1.tgz
Binary file not shown.
8 changes: 8 additions & 0 deletions performance-qa/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: '3.7'
services:
wfone-pm-load-test:
build:
context: .
dockerfile: Dockerfile
ports:
- "8080:8080"
Loading

0 comments on commit e2df9aa

Please sign in to comment.