Skip to content

Commit 6217963

Browse files
FEAT: Replace SUT in js scripting intro (#56)
* feat: replace SUT in js scripting intro * chore: add manual and advanced options for package deployment * feat: change download button with reference to ecommerce repo * fix: remove unzipping reference * feat: rebase guide on ecommerce platform * chore: specify repository cloning instead of install * chore: change user-agent header
1 parent 68d3aff commit 6217963

7 files changed

+161
-133
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/*
2+
* Copyright 2011-2025 GatlingCorp (https://gatling.io)
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
//#full-example
18+
import { constantUsersPerSec, scenario, simulation } from "@gatling.io/core";
19+
import { http } from "@gatling.io/http";
20+
21+
export default simulation((setUp) => {
22+
// Define HTTP configuration
23+
// Reference: https://docs.gatling.io/reference/script/protocols/http/protocol/
24+
const httpProtocol = http
25+
.baseUrl("https://api-ecomm.gatling.io")
26+
.acceptHeader("application/json")
27+
.userAgentHeader(
28+
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36"
29+
);
30+
31+
// Define scenario
32+
// Reference: https://docs.gatling.io/reference/script/core/scenario/
33+
const scn = scenario("Scenario").exec(http("Session").get("/session"));
34+
35+
// Define injection profile and execute the test
36+
// Reference: https://docs.gatling.io/reference/script/core/injection/
37+
setUp(scn.injectOpen(constantUsersPerSec(2).during(60)))
38+
.protocols(httpProtocol);
39+
});
40+
//#full-example

content/tutorials/scripting-intro-js/code/ComputerDatabaseSimulation.ts

-40
This file was deleted.

content/tutorials/scripting-intro-js/code/ScriptingIntro1SampleJS.ts

+1-5
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,7 @@
1515
*/
1616

1717
//#setup-the-file
18-
import {
19-
scenario,
20-
simulation,
21-
constantUsersPerSec
22-
} from "@gatling.io/core";
18+
import { simulation, atOnceUsers, global, scenario, getParameter } from "@gatling.io/core";
2319
import { http } from "@gatling.io/http";
2420
//#setup-the-file
2521

content/tutorials/scripting-intro-js/code/ScriptingIntro2SampleJS.ts

+8-6
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,13 @@ import { http } from "@gatling.io/http";
1919

2020
//#define-the-protocol-class
2121
export default simulation((setUp) => {
22-
23-
// Add the HttpProtocolBuilder:
24-
const httpProtocol =
25-
http.baseUrl("https://computer-database.gatling.io")
26-
// set the "accept" header to a value suited for the expected response
27-
.acceptHeader("text/html");
22+
// Define HTTP configuration
23+
// Reference: https://docs.gatling.io/reference/script/protocols/http/protocol/
24+
const httpProtocol = http
25+
.baseUrl("https://api-ecomm.gatling.io")
26+
.acceptHeader("application/json")
27+
.userAgentHeader(
28+
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36"
29+
);
2830
});
2931
//#define-the-protocol-class

content/tutorials/scripting-intro-js/code/ScriptingIntro3SampleJS.ts

+11-8
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,17 @@ import { http } from "@gatling.io/http";
1919

2020
//#write-the-scenario
2121
export default simulation((setUp) => {
22+
// Define HTTP configuration
23+
// Reference: https://docs.gatling.io/reference/script/protocols/http/protocol/
24+
const httpProtocol = http
25+
.baseUrl("https://api-ecomm.gatling.io")
26+
.acceptHeader("application/json")
27+
.userAgentHeader(
28+
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36"
29+
);
2230

23-
const httpProtocol =
24-
http.baseUrl("https://computer-database.gatling.io")
25-
// set the "accept" header to a value suited for the expected response
26-
.acceptHeader("text/html");
27-
28-
// Add the ScenarioBuilder:
29-
const myScenario = scenario("My Scenario")
30-
.exec(http("Request 1").get("/computers/"));
31+
// Define scenario
32+
// Reference: https://docs.gatling.io/reference/script/core/scenario/
33+
const scn = scenario("Scenario").exec(http("Session").get("/session"));
3134
});
3235
//#write-the-scenario

content/tutorials/scripting-intro-js/code/ScriptingIntro4SampleJS.ts

+16-13
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,22 @@ import { http } from "@gatling.io/http";
1919

2020
//#define-the-injection-profile
2121
export default simulation((setUp) => {
22+
// Define HTTP configuration
23+
// Reference: https://docs.gatling.io/reference/script/protocols/http/protocol/
24+
const httpProtocol = http
25+
.baseUrl("https://api-ecomm.gatling.io")
26+
.acceptHeader("application/json")
27+
.userAgentHeader(
28+
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36"
29+
);
2230

23-
const httpProtocol =
24-
http.baseUrl("https://computer-database.gatling.io")
25-
// set the "accept" header to a value suited for the expected response
26-
.acceptHeader("text/html");
27-
28-
const myScenario = scenario("My Scenario")
29-
.exec(
30-
http("Request 1").get("/computers/"));
31-
32-
// Add the setUp block:
33-
setUp(
34-
myScenario.injectOpen(constantUsersPerSec(2).during(60))
35-
).protocols(httpProtocol);
31+
// Define scenario
32+
// Reference: https://docs.gatling.io/reference/script/core/scenario/
33+
const scn = scenario("Scenario").exec(http("Session").get("/session"));
34+
35+
// Define injection profile and execute the test
36+
// Reference: https://docs.gatling.io/reference/script/core/injection/
37+
setUp(scn.injectOpen(constantUsersPerSec(2).during(60)))
38+
.protocols(httpProtocol);
3639
});
3740
//#define-the-injection-profile

0 commit comments

Comments
 (0)