Skip to content

Commit fb5bcb8

Browse files
alhusseinsamykarimatwastb13579
authored
FEAT: Revamp "Writing realistic tests" page (#62)
* feat: replace SUT in writing realistic tests for java * refactor: change guide structure * feat: add groups section * fix: fix AdvancedTutorialSampleJava missing semicolon * feat: add simulation class section * feat: add injection profiles and assertions sections * feat: add setup block section * fix: fix setup block build failure * chore: adjust wording * chore: adjust guide structure + java version in build.sbt * feat: add utility files section * chore: adjust validation and extraction terminologies * chore: use hardcoded values in injection profile * chore: remove local host references * fix: remove static class definitions * feat: add javascript snippets * fix: js login var typo * chore: remove kotlin and scala code snippets * chore: add project structure section for each programming language * chore: add project structure for js and adjust wording * chore: adjust code samples indentation * chore: remove old code snippets * chore: use Optional expression and remove unnecessary exec calls * chore: remove unnecessary exec calls from js script * feat: add project structure for scala and kotlin * feat: add scala code * feat: add kotlin code snippets * chore: adjust pause times * chore: adjust scenarios 1 and 2 indentation * chore: adjust http protocol formatting for java and scala * Update content/tutorials/advanced/code/AdvancedTutorialSampleScala.scala Co-authored-by: Karim Atwa <[email protected]> * Update content/tutorials/advanced/code/AdvancedTutorialSampleKotlin.kt Co-authored-by: Karim Atwa <[email protected]> * Update content/tutorials/advanced/code/AdvancedTutorialSampleJava.java Co-authored-by: Karim Atwa <[email protected]> * Update content/tutorials/advanced/code/AdvancedTutorialSampleJava.java Co-authored-by: Karim Atwa <[email protected]> * Update content/tutorials/advanced/code/AdvancedTutorialSampleJava.java Co-authored-by: Karim Atwa <[email protected]> * Update content/tutorials/advanced/code/AdvancedTutorialSampleKotlin.kt Co-authored-by: Karim Atwa <[email protected]> * Update content/tutorials/advanced/code/AdvancedTutorialSampleKotlin.kt Co-authored-by: Karim Atwa <[email protected]> * Update content/tutorials/advanced/code/AdvancedTutorialSampleJava.java Co-authored-by: Karim Atwa <[email protected]> * Update content/tutorials/advanced/code/AdvancedTutorialSampleJava.java Co-authored-by: Karim Atwa <[email protected]> * chore: adjust java indentation * chore: adjust java indentation * chore: adjust javascript and remove unnecessary imports * chore: adjust indentation in all code snippets * chore: fix typos * rename tutorial and add redirect * chore: change user-agent header and add new lines --------- Co-authored-by: Karim Atwa <[email protected]> Co-authored-by: Karim Atwa <[email protected]> Co-authored-by: Shaun Brown <[email protected]>
1 parent 6217963 commit fb5bcb8

16 files changed

+1504
-755
lines changed

build.sbt

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ headerMappings ++= Map(
2121
headerSources / includeFilter := new ExtensionFilter("java", "scala", "kt", "ts")
2222

2323
Compile / javacOptions ++= Seq("-encoding", "utf8")
24+
Compile / javacOptions ++= Seq("--release", "17")
2425
Test / javacOptions ++= Seq("-encoding", "utf8")
2526
Test / javacOptions += "-Xlint:unchecked"
2627
Test / unmanagedSourceDirectories ++= (baseDirectory.value / "content" ** "code").get

content/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The following tutorials will help you get started with Gatling:
2424
- [Create a simulation with Java]({{< ref "tutorials/scripting-intro" >}})
2525
- [Create a simulation with JavaScript]({{< ref "tutorials/scripting-intro-js" >}})
2626
- [Introduction to the Recorder]({{< ref "tutorials/recorder" >}})
27-
- [Writing realistic tests]({{< ref "tutorials/advanced" >}})
27+
- [Writing realistic tests]({{< ref "tutorials/writing-realistic-tests" >}})
2828

2929
Having *scenarios* that are defined in code and are resource efficient are the two requirements that motivated us to create Gatling. Based on an expressive [DSL](http://en.wikipedia.org/wiki/Domain-specific_language), the *scenarios* are self-explanatory. They are easy to maintain and can be kept in a version control system.
3030

content/reference/script/core/session/feeders/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ lead: Inject data into your virtual users from an external source, eg a CSV file
66
date: 2021-04-20T18:30:56+02:00
77
---
88

9-
{{< alert tip >}}Learning to use feeders is covered in the [Writing realistic tests]({{< ref "/tutorials/advanced/" >}}) tutorial and in [Gatling Academy Module 3](https://academy.gatling.io/course/module-3-java-load-test-a-restful-api). {{< /alert >}}
9+
{{< alert tip >}}Learning to use feeders is covered in the [Writing realistic tests]({{< ref "/tutorials/writing-realistic-tests/" >}}) tutorial and in [Gatling Academy Module 3](https://academy.gatling.io/course/module-3-java-load-test-a-restful-api). {{< /alert >}}
1010

1111
Feeder is a type alias for `Iterator<Map<String, T>>`, meaning that the component created by the feed method will poll `Map<String, T>` records and inject its content.
1212

content/tutorials/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ordering:
99
- scripting-intro-js
1010
- postman
1111
- recorder
12-
- advanced
12+
- writing-realistic-tests
1313
- trial-plan
1414
- faq
1515
---

content/tutorials/advanced/code/AdvancedTutorialSampleJS.ts

-153
This file was deleted.

content/tutorials/advanced/code/AdvancedTutorialSampleJava.java

-150
This file was deleted.

0 commit comments

Comments
 (0)