Openbravo Issue Tracking System - Openbravo ERP |
View Issue Details |
|
ID | Project | Category | View Status | Date Submitted | Last Update |
0038517 | Openbravo ERP | A. Platform | public | 2018-05-10 15:45 | 2018-05-28 16:08 |
|
Reporter | jarmendariz | |
Assigned To | jarmendariz | |
Priority | normal | Severity | minor | Reproducibility | always |
Status | closed | Resolution | fixed | |
Platform | | OS | 5 | OS Version | |
Product Version | | |
Target Version | | Fixed in Version | 3.0PR18Q2 | |
Merge Request Status | |
Review Assigned To | caristu |
OBNetwork customer | No |
Web browser | |
Modules | Core |
Support ticket | |
Regression level | |
Regression date | |
Regression introduced in release | |
Regression introduced by commit | |
Triggers an Emergency Pack | No |
|
Summary | 0038517: test11461 can fail when a Translation pack is installed. |
Description | IssuesTest.test11461() creates a Form and a associated FormTrl object of which language is set to the first language retrieved by OBDal. If this language happens to be installed, save() will fail as the FormTrl object was already created when saving the Form object. |
Steps To Reproduce | In a system with a Translation pack installed (e.g. es_ES), run IssuesTest.test11461() a number of times and it'll eventually fail.
But, to make it reproducible you can just change this line:
formTrl.setLanguage(OBDal.getInstance().createCriteria(Language.class).list().get(0));
with this one (assumming you've installed the es_ES translation pack):
formTrl.setLanguage(OBDal.getInstance().get(Language.class, "140"));
And run again the test. |
Proposed Solution | Choose any language that is not installed. That is, any language which issystemlanguage is set to 'N' |
Additional Information | |
Tags | No tags attached. |
Relationships | |
Attached Files | |
|
Issue History |
Date Modified | Username | Field | Change |
2018-05-10 15:45 | jarmendariz | New Issue | |
2018-05-10 15:45 | jarmendariz | Assigned To | => platform |
2018-05-10 15:45 | jarmendariz | OBNetwork customer | => No |
2018-05-10 15:45 | jarmendariz | Modules | => Core |
2018-05-10 15:45 | jarmendariz | Triggers an Emergency Pack | => No |
2018-05-10 15:45 | jarmendariz | Status | new => scheduled |
2018-05-10 16:35 | hgbot | Checkin | |
2018-05-10 16:35 | hgbot | Note Added: 0104457 | |
2018-05-10 16:35 | hgbot | Status | scheduled => resolved |
2018-05-10 16:35 | hgbot | Resolution | open => fixed |
2018-05-10 16:35 | hgbot | Fixed in SCM revision | => http://code.openbravo.com/erp/devel/pi/rev/76d2f588a1c71192ba7ce77e2893d896685a58fa [^] |
2018-05-10 16:35 | jarmendariz | Assigned To | platform => jarmendariz |
2018-05-10 16:36 | jarmendariz | Review Assigned To | => caristu |
2018-05-14 13:09 | hudsonbot | Checkin | |
2018-05-14 13:09 | hudsonbot | Note Added: 0104493 | |
2018-05-25 13:46 | hgbot | Checkin | |
2018-05-25 13:46 | hgbot | Note Added: 0104715 | |
2018-05-25 13:47 | caristu | Note Added: 0104716 | |
2018-05-25 13:47 | caristu | Status | resolved => closed |
2018-05-25 13:47 | caristu | Fixed in Version | => 3.0PR18Q2 |
2018-05-28 16:08 | hudsonbot | Checkin | |
2018-05-28 16:08 | hudsonbot | Note Added: 0104752 | |
Notes |
|
(0104457)
|
hgbot
|
2018-05-10 16:35
|
|
Repository: erp/devel/pi
Changeset: 76d2f588a1c71192ba7ce77e2893d896685a58fa
Author: Javier Armendáriz <javier.armendariz <at> openbravo.com>
Date: Thu May 10 16:03:18 2018 +0200
URL: http://code.openbravo.com/erp/devel/pi/rev/76d2f588a1c71192ba7ce77e2893d896685a58fa [^]
Fixed issue 38517: Test fails sometimes when translation pack is installed.
Requesting the first language retrieved by OBDal with no criteria or order may
return a language that is already installed. This leads to an exception as the
FormTrl object was already created when saving Form and there cannot be 2 form
translations with the same associated Form ID and language.
---
M src-test/src/org/openbravo/test/dal/IssuesTest.java
---
|
|
|
|
|
|
(0104715)
|
hgbot
|
2018-05-25 13:46
|
|
|
|
|
Code reviewed + tested OK. |
|
|
|
|