Skip to content

Commit cb85f18

Browse files
committed
Update resources directory location
1 parent a0c5ca4 commit cb85f18

25 files changed

+39
-39
lines changed

test-suite/packages/integration/basic-auth-file-store/basic_auth_file_secured_client.bal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ http:Client clientEP = checkpanic new("https://localhost:9090",
77
},
88
secureSocket = {
99
cert: {
10-
path: "resources/ballerinaTruststore.p12",
10+
path: "packages/resources/ballerinaTruststore.p12",
1111
password: "ballerina"
1212
}
1313
}
@@ -16,7 +16,7 @@ http:Client clientEP = checkpanic new("https://localhost:9090",
1616
listener http:Listener apiEP = new(8080,
1717
secureSocket = {
1818
key: {
19-
path: "resources/ballerinaKeystore.p12",
19+
path: "packages/resources/ballerinaKeystore.p12",
2020
password: "ballerina"
2121
}
2222
}

test-suite/packages/integration/basic-auth-file-store/basic_auth_file_secured_service.bal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import ballerina/uuid;
55
listener http:Listener listenerEP = new(9090,
66
secureSocket = {
77
key: {
8-
path: "resources/ballerinaKeystore.p12",
8+
path: "packages/resources/ballerinaKeystore.p12",
99
password: "ballerina"
1010
}
1111
}

test-suite/packages/integration/basic-auth-ldap-store/basic_auth_ldap_secured_client.bal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ http:Client clientEP = checkpanic new("https://localhost:9090",
77
},
88
secureSocket = {
99
cert: {
10-
path: "resources/ballerinaTruststore.p12",
10+
path: "packages/resources/ballerinaTruststore.p12",
1111
password: "ballerina"
1212
}
1313
}
@@ -16,7 +16,7 @@ http:Client clientEP = checkpanic new("https://localhost:9090",
1616
listener http:Listener apiEP = new(8080,
1717
secureSocket = {
1818
key: {
19-
path: "resources/ballerinaKeystore.p12",
19+
path: "packages/resources/ballerinaKeystore.p12",
2020
password: "ballerina"
2121
}
2222
}

test-suite/packages/integration/basic-auth-ldap-store/basic_auth_ldap_secured_service.bal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import ballerina/uuid;
55
listener http:Listener listenerEP = new(9090,
66
secureSocket = {
77
key: {
8-
path: "resources/ballerinaKeystore.p12",
8+
path: "packages/resources/ballerinaKeystore.p12",
99
password: "ballerina"
1010
}
1111
}

test-suite/packages/integration/jwt-auth/jwt_secured_client.bal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ http:Client clientEP = checkpanic new("https://localhost:9090",
1111
keyAlias: "wso2carbon",
1212
keyPassword: "wso2carbon",
1313
keyStore: {
14-
path: "resources/wso2Keystore.p12",
14+
path: "packages/resources/wso2Keystore.p12",
1515
password: "wso2carbon"
1616
}
1717
}
1818
}
1919
},
2020
secureSocket = {
2121
cert: {
22-
path: "resources/ballerinaTruststore.p12",
22+
path: "packages/resources/ballerinaTruststore.p12",
2323
password: "ballerina"
2424
}
2525
}
@@ -28,7 +28,7 @@ http:Client clientEP = checkpanic new("https://localhost:9090",
2828
listener http:Listener apiEP = new(8080,
2929
secureSocket = {
3030
key: {
31-
path: "resources/ballerinaKeystore.p12",
31+
path: "packages/resources/ballerinaKeystore.p12",
3232
password: "ballerina"
3333
}
3434
}

test-suite/packages/integration/jwt-auth/jwt_secured_service.bal

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import ballerina/uuid;
55
listener http:Listener jwtListenerEP = new(9090,
66
secureSocket = {
77
key: {
8-
path: "resources/ballerinaKeystore.p12",
8+
path: "packages/resources/ballerinaKeystore.p12",
99
password: "ballerina"
1010
}
1111
}
@@ -24,7 +24,7 @@ service /orders1 on jwtListenerEP {
2424
trustStoreConfig: {
2525
certAlias: "wso2carbon",
2626
trustStore: {
27-
path: "resources/wso2Truststore.p12",
27+
path: "packages/resources/wso2Truststore.p12",
2828
password: "wso2carbon"
2929
}
3030
}
@@ -56,7 +56,7 @@ service /orders1 on jwtListenerEP {
5656
trustStoreConfig: {
5757
certAlias: "wso2carbon",
5858
trustStore: {
59-
path: "resources/wso2Truststore.p12",
59+
path: "packages/resources/wso2Truststore.p12",
6060
password: "wso2carbon"
6161
}
6262
}
@@ -89,7 +89,7 @@ service /orders2 on jwtListenerEP {
8989
issuer: "wso2is",
9090
audience: "3VTwFk7u1i366wzmvpJ_LZlfAV4a",
9191
signatureConfig: {
92-
certFile: "resources/wso2Public.crt"
92+
certFile: "packages/resources/wso2Public.crt"
9393
}
9494
},
9595
scopes: ["view-order"]
@@ -115,7 +115,7 @@ service /orders2 on jwtListenerEP {
115115
issuer: "wso2is",
116116
audience: "3VTwFk7u1i366wzmvpJ_LZlfAV4a",
117117
signatureConfig: {
118-
certFile: "resources/wso2Public.crt"
118+
certFile: "packages/resources/wso2Public.crt"
119119
}
120120
},
121121
scopes: ["add-order"]
@@ -150,7 +150,7 @@ service /orders3 on jwtListenerEP {
150150
clientConfig: {
151151
secureSocket: {
152152
cert: {
153-
path: "resources/ballerinaTruststore.p12",
153+
path: "packages/resources/ballerinaTruststore.p12",
154154
password: "ballerina"
155155
}
156156
}
@@ -186,7 +186,7 @@ service /orders3 on jwtListenerEP {
186186
clientConfig: {
187187
secureSocket: {
188188
cert: {
189-
path: "resources/ballerinaTruststore.p12",
189+
path: "packages/resources/ballerinaTruststore.p12",
190190
password: "ballerina"
191191
}
192192
}

test-suite/packages/integration/oauth2/oauth2_secured_client.bal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ http:Client clientEP = checkpanic new("https://localhost:9090",
99
clientConfig: {
1010
secureSocket: {
1111
cert: {
12-
path: "resources/wso2Truststore.p12",
12+
path: "packages/resources/wso2Truststore.p12",
1313
password: "wso2carbon"
1414
}
1515
}
1616
}
1717
},
1818
secureSocket = {
1919
cert: {
20-
path: "resources/ballerinaTruststore.p12",
20+
path: "packages/resources/ballerinaTruststore.p12",
2121
password: "ballerina"
2222
}
2323
}
@@ -26,7 +26,7 @@ http:Client clientEP = checkpanic new("https://localhost:9090",
2626
listener http:Listener apiEP = new(8080,
2727
secureSocket = {
2828
key: {
29-
path: "resources/ballerinaKeystore.p12",
29+
path: "packages/resources/ballerinaKeystore.p12",
3030
password: "ballerina"
3131
}
3232
}

test-suite/packages/integration/oauth2/oauth2_secured_service.bal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import ballerina/uuid;
55
listener http:Listener listenerEP = new(9090,
66
secureSocket = {
77
key: {
8-
path: "resources/ballerinaKeystore.p12",
8+
path: "packages/resources/ballerinaKeystore.p12",
99
password: "ballerina"
1010
}
1111
}
@@ -22,7 +22,7 @@ service /orders on listenerEP {
2222
customHeaders: {"Authorization": "Basic YWRtaW46YWRtaW4="},
2323
secureSocket: {
2424
cert: {
25-
path: "resources/ballerinaTruststore.p12",
25+
path: "packages/resources/ballerinaTruststore.p12",
2626
password: "ballerina"
2727
}
2828
}
@@ -53,7 +53,7 @@ service /orders on listenerEP {
5353
customHeaders: {"Authorization": "Basic YWRtaW46YWRtaW4="},
5454
secureSocket: {
5555
cert: {
56-
path: "resources/ballerinaTruststore.p12",
56+
path: "packages/resources/ballerinaTruststore.p12",
5757
password: "ballerina"
5858
}
5959
}
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)