-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Functional testing framework for PBS (#1536)
* PBS functional testing framework * update * update * update * update * update Co-authored-by: mtuchkova <mtuchkova@magnite.com>
- Loading branch information
Showing
197 changed files
with
6,151 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,5 @@ | |
target/ | ||
|
||
.DS_Store | ||
|
||
.allure/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
target/*.jar | ||
src/main/docker/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM openjdk:11-jdk-slim | ||
|
||
WORKDIR /app/prebid-server | ||
|
||
VOLUME /app/prebid-server/conf | ||
VOLUME /app/prebid-server/data | ||
|
||
COPY src/main/docker/run.sh ./ | ||
COPY src/main/docker/application.yaml ./ | ||
COPY target/prebid-server.jar ./ | ||
|
||
EXPOSE 8080 | ||
EXPOSE 8060 | ||
|
||
ENTRYPOINT [ "/app/prebid-server/run.sh" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
gdpr: | ||
vendorlist: | ||
v2: | ||
cache-dir: /app/prebid-server/data/vendorlist-v2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/sh | ||
|
||
exec java \ | ||
-Dvertx.cacheDirBase=/app/prebid-server/data/.vertx \ | ||
-Dspring.config.additional-location=/app/prebid-server/,/app/prebid-server/conf/ \ | ||
${JAVA_OPTS} \ | ||
-jar \ | ||
/app/prebid-server/prebid-server.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
[{*.gant, *.gradle, *.groovy, *.gson, *.gy}] | ||
ij_groovy_align_multiline_chained_methods = true | ||
ij_groovy_array_initializer_wrap = normal | ||
ij_groovy_binary_operation_wrap = normal | ||
ij_groovy_blank_lines_after_class_header = 1 | ||
ij_groovy_blank_lines_after_imports = 1 | ||
ij_groovy_blank_lines_after_package = 1 | ||
ij_groovy_blank_lines_around_class = 1 | ||
ij_groovy_blank_lines_around_field = 0 | ||
ij_groovy_blank_lines_around_field_in_interface = 0 | ||
ij_groovy_blank_lines_around_method = 1 | ||
ij_groovy_blank_lines_around_method_in_interface = 1 | ||
ij_groovy_blank_lines_before_imports = 1 | ||
ij_groovy_blank_lines_before_method_body = 0 | ||
ij_groovy_blank_lines_before_package = 0 | ||
ij_groovy_class_count_to_use_import_on_demand = 999 | ||
ij_groovy_do_while_brace_force = always | ||
ij_groovy_extends_list_wrap = normal | ||
ij_groovy_for_brace_force = always | ||
ij_groovy_for_statement_wrap = normal | ||
ij_groovy_if_brace_force = always | ||
ij_groovy_imports_layout = *, |, java.**, |, $* | ||
ij_groovy_insert_inner_class_imports = true | ||
ij_groovy_keep_blank_lines_before_right_brace = 2 | ||
ij_groovy_keep_blank_lines_in_code = 1 | ||
ij_groovy_keep_blank_lines_in_declarations = 2 | ||
ij_groovy_keep_control_statement_in_one_line = false | ||
ij_groovy_keep_line_breaks = true | ||
ij_groovy_keep_multiple_expressions_in_one_line = false | ||
ij_groovy_keep_simple_blocks_in_one_line = false | ||
ij_groovy_keep_simple_classes_in_one_line = true | ||
ij_groovy_keep_simple_lambdas_in_one_line = true | ||
ij_groovy_keep_simple_methods_in_one_line = true | ||
ij_groovy_layout_static_imports_separately = true | ||
ij_groovy_line_comment_at_first_column = true | ||
ij_groovy_method_parameters_wrap = on_every_item | ||
ij_groovy_names_count_to_use_import_on_demand = 999 | ||
ij_groovy_ternary_operation_wrap = normal | ||
ij_groovy_throws_keyword_wrap = normal | ||
ij_groovy_use_flying_geese_braces = true | ||
ij_groovy_while_brace_force = always |
Oops, something went wrong.