Skip to content

Commit 2f1473f

Browse files
committed
Version bump
1 parent c682041 commit 2f1473f

File tree

8 files changed

+67
-67
lines changed

8 files changed

+67
-67
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Full API documentation is available on [Github Pages](https://constructor-io.git
88

99
## 1. Install
1010

11-
Please follow the directions at [Jitpack.io](https://jitpack.io/#Constructor-io/constructorio-client-android/v2.8.0) to add the client to your project.
11+
Please follow the directions at [Jitpack.io](https://jitpack.io/#Constructor-io/constructorio-client-android/v2.9.0) to add the client to your project.
1212

1313
## 2. Retrieve an API key
1414

library/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ android {
2929
targetSdkVersion 28
3030
testInstrumentationRunner "${applicationId}.runner.RxAndroidJUnitRunner"
3131
versionCode 1
32-
versionName '2.8.0'
32+
versionName '2.9.0'
3333
buildConfigField("String", "CLIENT_VERSION", "\"cioand-${versionName}\"")
3434
buildConfigField("String", "DEFAULT_ITEM_SECTION", "\"Products\"")
3535
buildConfigField("String", "SERVICE_URL", "\"ac.cnstrc.com\"")

library/src/test/java/io/constructor/core/ConstructorIoAutocompleteTest.kt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class ConstructorIoAutocompleteTest {
6363
suggestions?.isNotEmpty()!! && suggestions.size == 5
6464
}
6565
val request = mockServer.takeRequest()
66-
val path = "/autocomplete/titanic?key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-2.8.0&_dt="
66+
val path = "/autocomplete/titanic?key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-2.9.0&_dt="
6767
assert(request.path.startsWith(path))
6868
}
6969

@@ -78,7 +78,7 @@ class ConstructorIoAutocompleteTest {
7878
suggestions?.isNotEmpty()!! && suggestions.size == 5
7979
}
8080
val request = mockServer.takeRequest()
81-
val path = "/autocomplete/titanic?filters%5BstoreLocation%5D=CA&key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-2.8.0&_dt="
81+
val path = "/autocomplete/titanic?filters%5BstoreLocation%5D=CA&key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-2.9.0&_dt="
8282
assert(request.path.startsWith(path))
8383
}
8484

@@ -92,7 +92,7 @@ class ConstructorIoAutocompleteTest {
9292
suggestions?.isNotEmpty()!! && suggestions.size == 5
9393
}
9494
val request = mockServer.takeRequest()
95-
val path = "/autocomplete/titanic?filters%5Bgroup_id%5D=101&key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-2.8.0&_dt="
95+
val path = "/autocomplete/titanic?filters%5Bgroup_id%5D=101&key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-2.9.0&_dt="
9696
assert(request.path.startsWith(path))
9797
}
9898

@@ -105,7 +105,7 @@ class ConstructorIoAutocompleteTest {
105105
it.networkError
106106
}
107107
val request = mockServer.takeRequest()
108-
val path = "/autocomplete/titanic?key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-2.8.0&_dt="
108+
val path = "/autocomplete/titanic?key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-2.9.0&_dt="
109109
assert(request.path.startsWith(path))
110110
}
111111

@@ -119,7 +119,7 @@ class ConstructorIoAutocompleteTest {
119119
it.isError
120120
}
121121
val request = mockServer.takeRequest()
122-
val path = "/autocomplete/titanic?key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-2.8.0&_dt="
122+
val path = "/autocomplete/titanic?key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-2.9.0&_dt="
123123
assert(request.path.startsWith(path))
124124
}
125125

@@ -133,7 +133,7 @@ class ConstructorIoAutocompleteTest {
133133
suggestions?.isEmpty()!!
134134
}
135135
val request = mockServer.takeRequest()
136-
val path = "/autocomplete/titanic?key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-2.8.0&_dt="
136+
val path = "/autocomplete/titanic?key=golden-key&i=guido-the-guid&ui=player-one&s=79&c=cioand-2.9.0&_dt="
137137
assert(request.path.startsWith(path))
138138
}
139139
}

library/src/test/java/io/constructor/core/ConstructorIoTrackingTest.kt

Lines changed: 32 additions & 32 deletions
Large diffs are not rendered by default.

library/src/test/java/io/constructor/core/ConstructorioBrowseTest.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class ConstructorIoBrowseTest {
7171
it.get()!!.response?.resultCount == 367
7272
}
7373
val request = mockServer.takeRequest()
74-
val path = "/browse/group_id/Beverages?key=silver-key&i=guapo-the-guid&ui=player-two&s=92&c=cioand-2.8.0&_dt"
74+
val path = "/browse/group_id/Beverages?key=silver-key&i=guapo-the-guid&ui=player-two&s=92&c=cioand-2.9.0&_dt"
7575
assert(request.path.startsWith(path))
7676
}
7777

@@ -84,7 +84,7 @@ class ConstructorIoBrowseTest {
8484
it.networkError
8585
}
8686
val request = mockServer.takeRequest()
87-
val path = "/browse/group_id/Beverages?key=silver-key&i=guapo-the-guid&ui=player-two&s=92&c=cioand-2.8.0&_dt"
87+
val path = "/browse/group_id/Beverages?key=silver-key&i=guapo-the-guid&ui=player-two&s=92&c=cioand-2.9.0&_dt"
8888
assert(request.path.startsWith(path))
8989
}
9090

@@ -98,7 +98,7 @@ class ConstructorIoBrowseTest {
9898
it.isError
9999
}
100100
val request = mockServer.takeRequest()
101-
val path = "/browse/group_id/Beverages?key=silver-key&i=guapo-the-guid&ui=player-two&s=92&c=cioand-2.8.0&_dt"
101+
val path = "/browse/group_id/Beverages?key=silver-key&i=guapo-the-guid&ui=player-two&s=92&c=cioand-2.9.0&_dt"
102102
assert(request.path.startsWith(path))
103103
}
104104

@@ -114,7 +114,7 @@ class ConstructorIoBrowseTest {
114114
it.get()!!.response?.resultCount == 0
115115
}
116116
val request = mockServer.takeRequest()
117-
val path = "/browse/group_id/Beverages?key=silver-key&i=guapo-the-guid&ui=player-two&s=92&c=cioand-2.8.0&_dt"
117+
val path = "/browse/group_id/Beverages?key=silver-key&i=guapo-the-guid&ui=player-two&s=92&c=cioand-2.9.0&_dt"
118118
assert(request.path.startsWith(path))
119119
}
120120
}

library/src/test/java/io/constructor/core/ConstructorioSearchTest.kt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class ConstructorIoSearchTest {
7272
it.get()!!.response?.resultCount == 225
7373
}
7474
val request = mockServer.takeRequest()
75-
val path = "/search/corn?key=silver-key&i=guapo-the-guid&ui=player-two&s=92&c=cioand-2.8.0&_dt="
75+
val path = "/search/corn?key=silver-key&i=guapo-the-guid&ui=player-two&s=92&c=cioand-2.9.0&_dt="
7676
assert(request.path.startsWith(path))
7777
}
7878

@@ -85,7 +85,7 @@ class ConstructorIoSearchTest {
8585
it.networkError
8686
}
8787
val request = mockServer.takeRequest()
88-
val path = "/search/corn?key=silver-key&i=guapo-the-guid&ui=player-two&s=92&c=cioand-2.8.0&_dt="
88+
val path = "/search/corn?key=silver-key&i=guapo-the-guid&ui=player-two&s=92&c=cioand-2.9.0&_dt="
8989
assert(request.path.startsWith(path))
9090
}
9191

@@ -99,7 +99,7 @@ class ConstructorIoSearchTest {
9999
it.isError
100100
}
101101
val request = mockServer.takeRequest()
102-
val path = "/search/corn?key=silver-key&i=guapo-the-guid&ui=player-two&s=92&c=cioand-2.8.0&_dt="
102+
val path = "/search/corn?key=silver-key&i=guapo-the-guid&ui=player-two&s=92&c=cioand-2.9.0&_dt="
103103
assert(request.path.startsWith(path))
104104
}
105105

@@ -115,7 +115,7 @@ class ConstructorIoSearchTest {
115115
it.get()!!.response?.resultCount == 0
116116
}
117117
val request = mockServer.takeRequest()
118-
val path = "/search/corn?key=silver-key&i=guapo-the-guid&ui=player-two&s=92&c=cioand-2.8.0&_dt="
118+
val path = "/search/corn?key=silver-key&i=guapo-the-guid&ui=player-two&s=92&c=cioand-2.9.0&_dt="
119119
assert(request.path.startsWith(path))
120120
}
121121

@@ -129,7 +129,7 @@ class ConstructorIoSearchTest {
129129
it.get()!!.response?.redirect?.matchedTerms!![0] == "bbq"
130130
}
131131
val request = mockServer.takeRequest()
132-
val path = "/search/bbq?key=silver-key&i=guapo-the-guid&ui=player-two&s=92&c=cioand-2.8.0&_dt="
132+
val path = "/search/bbq?key=silver-key&i=guapo-the-guid&ui=player-two&s=92&c=cioand-2.9.0&_dt="
133133
assert(request.path.startsWith(path))
134134
}
135135
}

library/src/test/java/io/constructor/core/ConstructorioSegmentsTest.kt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class ConstructorioSegmentsTest {
6363
suggestions?.isNotEmpty()!! && suggestions.size == 5
6464
}
6565
val request = mockServer.takeRequest()
66-
val path = "/autocomplete/titanic?key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.8.0&_dt="
66+
val path = "/autocomplete/titanic?key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.9.0&_dt="
6767
assert(request.path.startsWith(path))
6868
}
6969

@@ -74,7 +74,7 @@ class ConstructorioSegmentsTest {
7474
val observer = constructorIo.trackSessionStartInternal().test()
7575
observer.assertComplete()
7676
val request = mockServer.takeRequest()
77-
val path = "/behavior?action=session_start&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.8.0&_dt=";
77+
val path = "/behavior?action=session_start&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.9.0&_dt=";
7878
assert(request.path.startsWith(path))
7979
}
8080

@@ -85,7 +85,7 @@ class ConstructorioSegmentsTest {
8585
val observer = ConstructorIo.trackInputFocusInternal("tita").test()
8686
observer.assertComplete()
8787
val request = mockServer.takeRequest()
88-
val path = "/behavior?term=tita&action=focus&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.8.0&_dt=";
88+
val path = "/behavior?term=tita&action=focus&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.9.0&_dt=";
8989
assert(request.path.startsWith(path))
9090
}
9191

@@ -96,7 +96,7 @@ class ConstructorioSegmentsTest {
9696
val observer = ConstructorIo.trackAutocompleteSelectInternal("titanic", "tit", "Search Suggestions").test()
9797
observer.assertComplete()
9898
val request = mockServer.takeRequest()
99-
val path = "/autocomplete/titanic/select?section=Search%20Suggestions&original_query=tit&tr=click&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.8.0&_dt="
99+
val path = "/autocomplete/titanic/select?section=Search%20Suggestions&original_query=tit&tr=click&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.9.0&_dt="
100100
assert(request.path.startsWith(path))
101101
}
102102

@@ -107,7 +107,7 @@ class ConstructorioSegmentsTest {
107107
val observer = ConstructorIo.trackSearchSubmitInternal("titanic", "tit", null).test()
108108
observer.assertComplete()
109109
val request = mockServer.takeRequest()
110-
val path = "/autocomplete/titanic/search?original_query=tit&tr=search&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.8.0&_dt=";
110+
val path = "/autocomplete/titanic/search?original_query=tit&tr=search&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.9.0&_dt=";
111111
assert(request.path.startsWith(path))
112112
}
113113

@@ -118,7 +118,7 @@ class ConstructorioSegmentsTest {
118118
val observer = ConstructorIo.trackSearchResultsLoadedInternal("titanic", 10).test()
119119
observer.assertComplete()
120120
val request = mockServer.takeRequest()
121-
val path = "/behavior?term=titanic&num_results=10&action=search-results&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.8.0&_dt=";
121+
val path = "/behavior?term=titanic&num_results=10&action=search-results&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.9.0&_dt=";
122122
assert(request.path.startsWith(path))
123123
}
124124

@@ -129,7 +129,7 @@ class ConstructorioSegmentsTest {
129129
val observer = ConstructorIo.trackSearchResultClickInternal("titanic replica", "TIT-REP-1997", "titanic").test()
130130
observer.assertComplete()
131131
val request = mockServer.takeRequest()
132-
val path = "/autocomplete/titanic/click_through?name=titanic%20replica&customer_id=TIT-REP-1997&section=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.8.0&_dt=";
132+
val path = "/autocomplete/titanic/click_through?name=titanic%20replica&customer_id=TIT-REP-1997&section=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.9.0&_dt=";
133133
assert(request.path.startsWith(path))
134134
}
135135

@@ -140,7 +140,7 @@ class ConstructorioSegmentsTest {
140140
val observer = ConstructorIo.trackConversionInternal("titanic replica", "TIT-REP-1997", 89.00).test()
141141
observer.assertComplete()
142142
val request = mockServer.takeRequest()
143-
val path = "/v2/behavioral_action/conversion?key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.8.0&_dt=";
143+
val path = "/v2/behavioral_action/conversion?key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.9.0&_dt=";
144144
assert(request.path.startsWith(path))
145145
}
146146

@@ -151,7 +151,7 @@ class ConstructorioSegmentsTest {
151151
val observer = ConstructorIo.trackPurchaseInternal(arrayOf("TIT-REP-1997", "QE2-REP-1969"), 12.99, "ORD-1312343").test()
152152
observer.assertComplete()
153153
val request = mockServer.takeRequest()
154-
val path = "/v2/behavioral_action/purchase?section=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.8.0&_dt=";
154+
val path = "/v2/behavioral_action/purchase?section=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&us=mobile&us=COUNTRY_US&c=cioand-2.9.0&_dt=";
155155
assertTrue(request.bodySize > 250)
156156
assert(request.path.startsWith(path))
157157
}

library/src/test/java/io/constructor/core/ConstructorioTestCellTest.kt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class ConstructorioTestCellTest {
6464
suggestions?.isNotEmpty()!! && suggestions.size == 5
6565
}
6666
val request = mockServer.takeRequest()
67-
val path = "/autocomplete/titanic?key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.8.0&_dt="
67+
val path = "/autocomplete/titanic?key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.9.0&_dt="
6868
assert(request.path.startsWith(path))
6969
}
7070

@@ -75,7 +75,7 @@ class ConstructorioTestCellTest {
7575
val observer = constructorIo.trackSessionStartInternal().test()
7676
observer.assertComplete()
7777
val request = mockServer.takeRequest()
78-
val path = "/behavior?action=session_start&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.8.0&_dt=";
78+
val path = "/behavior?action=session_start&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.9.0&_dt=";
7979
assert(request.path.startsWith(path))
8080
}
8181

@@ -86,7 +86,7 @@ class ConstructorioTestCellTest {
8686
val observer = ConstructorIo.trackInputFocusInternal("tita").test()
8787
observer.assertComplete()
8888
val request = mockServer.takeRequest()
89-
val path = "/behavior?term=tita&action=focus&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.8.0&_dt=";
89+
val path = "/behavior?term=tita&action=focus&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.9.0&_dt=";
9090
assert(request.path.startsWith(path))
9191
}
9292

@@ -97,7 +97,7 @@ class ConstructorioTestCellTest {
9797
val observer = ConstructorIo.trackAutocompleteSelectInternal("titanic", "tit", "Search Suggestions").test()
9898
observer.assertComplete()
9999
val request = mockServer.takeRequest()
100-
val path = "/autocomplete/titanic/select?section=Search%20Suggestions&original_query=tit&tr=click&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.8.0&_dt="
100+
val path = "/autocomplete/titanic/select?section=Search%20Suggestions&original_query=tit&tr=click&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.9.0&_dt="
101101
assert(request.path.startsWith(path))
102102
}
103103

@@ -108,7 +108,7 @@ class ConstructorioTestCellTest {
108108
val observer = ConstructorIo.trackSearchSubmitInternal("titanic", "tit", null).test()
109109
observer.assertComplete()
110110
val request = mockServer.takeRequest()
111-
val path = "/autocomplete/titanic/search?original_query=tit&tr=search&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.8.0&_dt=";
111+
val path = "/autocomplete/titanic/search?original_query=tit&tr=search&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.9.0&_dt=";
112112
assert(request.path.startsWith(path))
113113
}
114114

@@ -119,7 +119,7 @@ class ConstructorioTestCellTest {
119119
val observer = ConstructorIo.trackSearchResultsLoadedInternal("titanic", 10).test()
120120
observer.assertComplete()
121121
val request = mockServer.takeRequest()
122-
val path = "/behavior?term=titanic&num_results=10&action=search-results&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.8.0&_dt=";
122+
val path = "/behavior?term=titanic&num_results=10&action=search-results&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.9.0&_dt=";
123123
assert(request.path.startsWith(path))
124124
}
125125

@@ -130,7 +130,7 @@ class ConstructorioTestCellTest {
130130
val observer = ConstructorIo.trackSearchResultClickInternal("titanic replica", "TIT-REP-1997", "titanic").test()
131131
observer.assertComplete()
132132
val request = mockServer.takeRequest()
133-
val path = "/autocomplete/titanic/click_through?name=titanic%20replica&customer_id=TIT-REP-1997&section=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.8.0&_dt=";
133+
val path = "/autocomplete/titanic/click_through?name=titanic%20replica&customer_id=TIT-REP-1997&section=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.9.0&_dt=";
134134
assert(request.path.startsWith(path))
135135
}
136136

@@ -141,7 +141,7 @@ class ConstructorioTestCellTest {
141141
val observer = ConstructorIo.trackConversionInternal("titanic replica", "TIT-REP-1997", 89.00).test()
142142
observer.assertComplete()
143143
val request = mockServer.takeRequest()
144-
val path = "/v2/behavioral_action/conversion?key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.8.0&_dt=";
144+
val path = "/v2/behavioral_action/conversion?key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.9.0&_dt=";
145145
assert(request.path.startsWith(path))
146146
}
147147

@@ -152,7 +152,7 @@ class ConstructorioTestCellTest {
152152
val observer = ConstructorIo.trackPurchaseInternal(arrayOf("TIT-REP-1997", "QE2-REP-1969"), 12.99, "ORD-1312343").test()
153153
observer.assertComplete()
154154
val request = mockServer.takeRequest()
155-
val path = "/v2/behavioral_action/purchase?section=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.8.0&_dt=";
155+
val path = "/v2/behavioral_action/purchase?section=Products&key=aluminium-key&i=koopa-the-guid&ui=player-two&s=14&ef-cellone=vanilla&ef-celltwo=whipped-cream&c=cioand-2.9.0&_dt=";
156156
assertTrue(request.bodySize > 230)
157157
assert(request.path.startsWith(path))
158158
}

0 commit comments

Comments
 (0)