Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
13 changes: 13 additions & 0 deletions testhelper/open-sds-junit/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
*.iml
.gradle
/local.properties
*.idea
.DS_Store
/build
/captures
**/out/
**/gen/
**/bin/
**/build/
/environment_variable
/src/main/resources/inputs/download
28 changes: 28 additions & 0 deletions testhelper/open-sds-junit/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
plugins {
id 'java'
}

group 'www.opensds.io'
version '1.0'

repositories {
mavenCentral()
}

sourceCompatibility = 1.8

dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
testImplementation('junit:junit:4.13')
testRuntimeOnly 'org.junit.vintage:junit-vintage-engine'

implementation 'com.google.code.gson:gson:2.8.6'
implementation("com.squareup.okhttp3:okhttp:4.6.0")
compile group: 'org.json', name: 'json', version: '20090211'
implementation("com.google.guava:guava:29.0-jre")

// implementation platform('com.amazonaws:aws-java-sdk-bom:1.11.475')
// implementation 'com.amazonaws:aws-java-sdk-s3'
compile group: 'uk.co.lucasweb', name: 'aws-v4-signer-java', version: '1.2'
}
4 changes: 4 additions & 0 deletions testhelper/open-sds-junit/environment_variable.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// Set your provider details here
src\main\resources\inputs\createbucket
// Before test execute setup this variable in environment variable
HOST_IP=***.***.*.***;INPUT_PATH=D:/SODA-TestProject/OpenSdsGradle;PORT_TENANT_ID=:****;PORT=:****
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
183 changes: 183 additions & 0 deletions testhelper/open-sds-junit/gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

100 changes: 100 additions & 0 deletions testhelper/open-sds-junit/gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions testhelper/open-sds-junit/settings.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
rootProject.name = 'open-sds-junit'

Loading