Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/3.5.9 #1003

Merged
merged 26 commits into from
Jun 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
bf5bd7c
Add agent connection port to docker README.md
jinan159 Jan 15, 2023
5267a1b
Merge pull request #953 from jinan159/develop
imbyungjun Mar 29, 2023
bbd984a
Use controller.host property instead of old controller.ip property
junoyoon Jul 21, 2023
efc2b75
Merge pull request #974 from junoyoon/fix/use-controller-host-property
imbyungjun Jul 24, 2023
e67db93
Add fallback to cleanup perftest resources
donggyu04 Sep 21, 2023
d7cc4cf
Merge pull request #983 from naver/Add-fallback-to-cleanup-perftest-r…
donggyu04 Sep 21, 2023
9959953
Clean up util classes (#994)
imbyungjun Jan 8, 2024
0338146
Add access control for webhook (#993)
imbyungjun Jan 8, 2024
f6d0672
Remove unused delayed health check API (#992)
imbyungjun Jan 9, 2024
1a28741
Change yaml parser to yamlbeans (#995)
imbyungjun Jan 9, 2024
4efcbe9
Add controller properties for monitoring enable or not
donggyu04 Feb 21, 2024
fa883bc
Merge pull request #1001 from naver/delete-monitoring-feature
donggyu04 Feb 21, 2024
1c6ba7c
Fix unit test (#996)
imbyungjun Feb 21, 2024
85efa4a
Add object input filter on Connector (#1000)
imbyungjun Feb 23, 2024
add38d8
Fix failing to call mvn or gradle at MAVEN_HOME, GRADLE_HOME respecti…
facewise Feb 23, 2024
2d9ae33
Release/3.5.9 (#1002)
imbyungjun Feb 26, 2024
5c702ff
Fix oshi (#1004)
imbyungjun Feb 27, 2024
0ab78f2
Update release note (#1005)
imbyungjun Feb 27, 2024
98892b1
Fix typo
izeye Mar 26, 2024
cffd50b
add CodeQL workflow
p- Apr 11, 2024
5e45f0a
Merge pull request #1014 from p-/p-/add-codeql-workflow
imbyungjun May 3, 2024
6c7c6f1
Merge pull request #1011 from izeye/patch-1
imbyungjun May 3, 2024
17dbe9f
Revert "Change yaml parser to yamlbeans (#995)"
imbyungjun May 14, 2024
6df6b32
Change to use SafeConstructor
imbyungjun May 14, 2024
cac2c82
Merge pull request #1018 from naver/feature/yaml
imbyungjun May 16, 2024
2e44e04
Add authorization settings for API (#1017)
imbyungjun May 20, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
83 changes: 83 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
name: "CodeQL"

on:
push:
branches: [ 'develop', 'master' ]
pull_request:
branches: [ 'develop', 'master' ]
schedule:
- cron: '19 6 * * 2'

jobs:
analyze:
name: Analyze (${{ matrix.language }})
# Runner size impacts CodeQL analysis time. To learn more, please see:
# - https://gh.io/recommended-hardware-resources-for-running-codeql
# - https://gh.io/supported-runners-and-hardware-resources
# - https://gh.io/using-larger-runners (GitHub.com only)
# Consider using larger runners or machines with greater resources for possible analysis time improvements.
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
permissions:
# required for all workflows
security-events: write

# required to fetch internal or private CodeQL packs
packages: read

# only required for workflows in private repositories
actions: read
contents: read

strategy:
fail-fast: false
matrix:
include:
- language: 'java-kotlin'
build-mode: none
- language: 'python'
- language: 'javascript'
# CodeQL supports the following values keywords for 'language': 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby'
# Use `c-cpp` to analyze code written in C, C++ or both
# Use 'java-kotlin' to analyze code written in Java, Kotlin or both
# Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
# To learn more about changing the languages that are analyzed or customizing the build mode for your analysis,
# see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning.
# If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
steps:
- name: Checkout repository
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.

# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
queries: security-extended

# If the analyze step fails for one of the languages you are analyzing with
# "We were unable to automatically build your code", modify the matrix above
# to set the build mode to "manual" for that language. Then modify this step
# to build your code.
# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
- if: matrix.build-mode == 'manual'
run: |
echo 'If you are using a "manual" build mode for one or more of the' \
'languages you are analyzing, replace this with the commands to build' \
'your code, for example:'
echo ' make bootstrap'
echo ' make release'
exit 1

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"
4 changes: 2 additions & 2 deletions .github/workflows/run-build-with-test-on-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Setup JDK 8
- name: Setup JDK 11
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '8.0.345'
java-version: '11.0.22'
architecture: x64
cache: 'gradle'

Expand Down
12 changes: 12 additions & 0 deletions NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -581,3 +581,15 @@ See the License for the specific language governing permissions and
limitations under the License.

=====

Copyright (c) 2008, SnakeYAML

Licensed 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

http://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.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
* Please post questions in [Discussions](https://github.com/naver/ngrinder/discussions) not Issues.
* nGrinder 3.5.8 has been released. See https://github.com/naver/ngrinder/releases
* nGrinder 3.5.9 has been released. See https://github.com/naver/ngrinder/releases
* Currently, we are working on the internal project not ngrinder. We will resume ngrinder dev from July, 2022.

nGrinder
Expand Down
9 changes: 9 additions & 0 deletions RELEASE-NOTE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
3.5.9 (2023.02.28)
=================
- Changes
- Fix security vulnerabilities
- Bump base JDK version up to 11
- Bug fix
- #998 Fix failing to call mvn and gradle command in Windows
- #1004 Fix script validation error in docker env

3.5.8 (2022.12.30)
=================
- Changes
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ allprojects {
apply plugin: "idea"

group = "org.ngrinder"
version = "3.5.8"
version = "3.5.9"

idea {
module {
Expand All @@ -28,8 +28,8 @@ subprojects {
compileJava.options.encoding = "UTF-8"
compileTestJava.options.encoding = "UTF-8"

sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceCompatibility = 11
targetCompatibility = 11

ext {
profile = project.hasProperty("profile") ? profile : "production"
Expand Down
12 changes: 7 additions & 5 deletions docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ nGrinder consists of two major components.

Version
---------
Current Version: 3.4
Current Version: 3.5.9

How to run nGrinder with dockers
===========================
Expand All @@ -27,13 +27,13 @@ Install docker 1.5.0 or above on your host.
Pull the ngrinder/controller image.

```
$ docker pull ngrinder/controller:3.5.8
$ docker pull ngrinder/controller:3.5.9
```

Start controller.

```
docker run -d -v ~/ngrinder-controller:/opt/ngrinder-controller -p 80:80 -p 16001:16001 -p 12000-12009:12000-12009 ngrinder/controller:3.5.8
docker run -d -v ~/ngrinder-controller:/opt/ngrinder-controller -p 80:80 -p 16001:16001 -p 12000-12009:12000-12009 ngrinder/controller:3.5.9
```

The controller creates a data folder under /opt/ngrinder-controller to maintain test history and configuration data. In order to keep the data persistently, you should map the folder /opt/ngrinder-controller on the container to a folder on your host .
Expand All @@ -42,6 +42,8 @@ Port information:

* __80__: Default controller web UI port.

* __16001__: Controller port for agent connection.

* __9010-9019__: agents connect to the controller cluster through these ports.

* __12000-12029__: controllers allocate stress tests through these ports.
Expand All @@ -54,11 +56,11 @@ Install docker 1.5.0 or above on your another host. You should run your agent on
Pull the ngrinder/agent image.

```
$ docker pull ngrinder/agent:3.5.8
$ docker pull ngrinder/agent:3.5.9
```

Start agent.

```
docker run -v ~/ngrinder-agent:/opt/ngrinder-agent -d ngrinder/agent:3.5.8 controller_ip:controller_web_port
docker run -v ~/ngrinder-agent:/opt/ngrinder-agent -d ngrinder/agent:3.5.9 controller_ip:controller_web_port
```
2 changes: 1 addition & 1 deletion docker/agent/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM jeanblanchard/java:serverjre-8
FROM azul/zulu-openjdk-alpine:11.0.22-jre
MAINTAINER JunHo Yoon "[email protected]"

RUN apk update; apk add curl bash udev
Expand Down
4 changes: 2 additions & 2 deletions docker/controller/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM jeanblanchard/java:serverjre-8
FROM azul/zulu-openjdk-alpine:11.0.22-jre
MAINTAINER JunHo Yoon "[email protected]"

RUN apk update; apk add curl bash tar

ARG MAVEN_VERSION=3.6.3
ARG MAVEN_VERSION=3.9.6
ARG MAVEN_DOWNLOAD_BASE_URL=https://apache.osuosl.org/maven/maven-3/${MAVEN_VERSION}/binaries

ARG GRADLE_VERSION=6.7.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
*/
package org.ngrinder.agent.controller;

import org.ngrinder.common.exception.NGrinderRuntimeException;
import org.ngrinder.common.util.AopUtils;
import org.ngrinder.infra.config.Config;
import org.ngrinder.monitor.controller.model.SystemDataModel;
Expand Down Expand Up @@ -53,6 +54,13 @@ public class MonitorManagerApiController {
*/
@GetMapping("/state")
public SystemDataModel getRealTimeMonitorData(@RequestParam final String ip) throws InterruptedException, ExecutionException, TimeoutException {
if (!config.isMonitorEnabled()) {
throw new NGrinderRuntimeException(
"Monitoring is disabled. If you want to enable monitoring feature," +
" modify system settings. but there is a risk of attack from the monitoring server."
);
}

int port = config.getMonitorPort();
Future<SystemInfo> systemInfoFuture = AopUtils.proxy(this).getAsyncSystemInfo(ip, port);
SystemInfo systemInfo = checkNotNull(systemInfoFuture.get(2, TimeUnit.SECONDS), "Monitoring data is not available.");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,14 @@ public interface ControllerConstants {
String PROP_CONTROLLER_FRONT_PAGE_QNA_RSS = "controller.front_page_qna_rss";
String PROP_CONTROLLER_FRONT_PAGE_RESOURCES_MORE_URL = "controller.front_page_resources_more_url";
String PROP_CONTROLLER_HELP_URL = "controller.help_url";
String PROP_CONTROLLER_IP = "controller.ip";
String PROP_CONTROLLER_HOST = "controller.host";
String PROP_CONTROLLER_MAX_AGENT_PER_TEST = "controller.max_agent_per_test";
String PROP_CONTROLLER_MAX_CONCURRENT_TEST = "controller.max_concurrent_test";
String PROP_CONTROLLER_MAX_RUN_COUNT = "controller.max_run_count";
String PROP_CONTROLLER_MAX_RUN_HOUR = "controller.max_run_hour";
String PROP_CONTROLLER_MAX_VUSER_PER_AGENT = "controller.max_vuser_per_agent";
String PROP_CONTROLLER_MONITOR_PORT = "controller.monitor_port";
String PROP_CONTROLLER_ENABLE_MONITOR = "controller.enable_monitor";
String PROP_CONTROLLER_PLUGIN_SUPPORT = "controller.plugin_support";
String PROP_CONTROLLER_SAFE_DIST = "controller.safe_dist";
String PROP_CONTROLLER_SAFE_DIST_THRESHOLD = "controller.safe_dist_threshold";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
import org.apache.commons.io.FileUtils;
import org.ngrinder.common.constants.GrinderConstants;
import org.ngrinder.common.exception.ConfigurationException;
import org.ngrinder.common.util.EncodingUtils;
import org.ngrinder.common.util.NoOp;
import org.ngrinder.common.util.PropertyUtils;
import org.ngrinder.model.PerfTest;
import org.ngrinder.model.User;
import org.slf4j.Logger;
Expand All @@ -26,7 +26,6 @@

import java.io.File;
import java.io.IOException;
import java.io.StringReader;
import java.util.Properties;

import static java.util.Objects.requireNonNull;
Expand Down Expand Up @@ -55,8 +54,8 @@ public class Home {
private static final String PATH_DIST = "dist";
private static final String PATH_STAT = "stat";
private final static Logger LOGGER = LoggerFactory.getLogger(Home.class);
private final File directory;
private static final String REPORT_CSV = "output.csv";
private final File directory;

/**
* Constructor.
Expand All @@ -81,8 +80,7 @@ public Home(File directory, boolean create) {
}
}
if (directory.exists() && !directory.canWrite()) {
throw new ConfigurationException(String.format(" ngrinder home directory %s is not writable.", directory),
null);
throw new ConfigurationException(String.format(" ngrinder home directory %s is not writable.", directory), null);
}
this.directory = directory;
}
Expand Down Expand Up @@ -140,22 +138,8 @@ public void makeSubPath(String subPathName) {
* @return loaded {@link Properties}
*/
public Properties getProperties(String confFileName) {
try {
File configFile = getSubFile(confFileName);
if (configFile.exists()) {
byte[] propByte = FileUtils.readFileToByteArray(configFile);
String propString = EncodingUtils.getAutoDecodedString(propByte, "UTF-8");
Properties prop = new Properties();
prop.load(new StringReader(propString));
return prop;
} else {
// default empty properties.
return new Properties();
}

} catch (IOException e) {
throw processException("Fail to load property file " + confFileName, e);
}
File configFile = getSubFile(confFileName);
return PropertyUtils.loadProperties(configFile);
}

/**
Expand Down
Loading
Loading