File tree 5 files changed +28
-4
lines changed
java/ru/mystamps/web/feature/series/sale
test/robotframework/series/sales
5 files changed +28
-4
lines changed Original file line number Diff line number Diff line change 21
21
final class SeriesSalesDb {
22
22
23
23
static final class SeriesSales {
24
- static final int TRANSACTION_URL_LENGTH = 255 ;
24
+ static final int TRANSACTION_URL_LENGTH = 767 ;
25
25
}
26
26
27
27
}
Original file line number Diff line number Diff line change 11
11
<include file =" initial-state.xml" relativeToChangelogFile =" true" />
12
12
<include file =" version/0.3.xml" relativeToChangelogFile =" true" />
13
13
<include file =" version/0.4.xml" relativeToChangelogFile =" true" />
14
-
14
+ <include file =" version/0.4.1.xml" relativeToChangelogFile =" true" />
15
+
15
16
</databaseChangeLog >
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <databaseChangeLog
3
+ xmlns=" http://www.liquibase.org/xml/ns/dbchangelog"
4
+ xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"
5
+ xsi:schemaLocation=" http://www.liquibase.org/xml/ns/dbchangelog
6
+ http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.0.xsd" >
7
+
8
+ <include file =" 0.4.1/2019-07-21--series_sales_transaction_url_length.xml" relativeToChangelogFile =" true" />
9
+
10
+ </databaseChangeLog >
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <databaseChangeLog
3
+ xmlns=" http://www.liquibase.org/xml/ns/dbchangelog"
4
+ xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"
5
+ xsi:schemaLocation=" http://www.liquibase.org/xml/ns/dbchangelog
6
+ http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.0.xsd" >
7
+
8
+ <changeSet id =" modify-series_sales-transaction_url-field" author =" mukeshk" context =" scheme" >
9
+ <comment >Must match to the series_import_requests.url field</comment >
10
+ <modifyDataType tableName =" series_sales" columnName =" transaction_url" newDataType =" VARCHAR(767)" />
11
+ </changeSet >
12
+
13
+ </databaseChangeLog >
Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ Force Tags series sales validation
9
9
*** Test Cases ***
10
10
Create series sale with too long url
11
11
${letter } = Set Variable j
12
- Input Text id=url http://${letter * 255 }
12
+ Input Text id=url http://${letter * 767 }
13
13
Submit Form id=add-series-sales-form
14
- Element Text Should Be id=url.errors Value is greater than allowable maximum of 255 characters
14
+ Element Text Should Be id=url.errors Value is greater than allowable maximum of 767 characters
15
15
16
16
Create series sale with invalid url
17
17
Input Text id=url invalid-url
You can’t perform that action at this time.
0 commit comments