Openbravo Issue Tracking System - Openbravo ERP |
View Issue Details |
|
ID | Project | Category | View Status | Date Submitted | Last Update |
0037648 | Openbravo ERP | A. Platform | public | 2018-01-16 10:32 | 2018-02-22 18:19 |
|
Reporter | shuehner | |
Assigned To | alostale | |
Priority | normal | Severity | minor | Reproducibility | have not tried |
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 | 0037648: junit testcase ViewTest.test14914 is very slow (ca. 15-20seconds) |
Description | That test checks that DalUtil.copy (with children) does exclude references which are views (and not tables).
However it repeats that test for every invoice in the system (typically from sampledata).
That seems to have not extra benefit and should be simplified.
Note: As different at least ci test may have different sampledata maybe some simple logic to find 1 case could be useful instead of hardcoded id.
Alternatively moving to a different attached view of i.e. some other non-sampledata table could be an option (Note: initial bug 14914 which fixed DalUtil.copy was about invoices though)
final Invoice copied = (Invoice) DalUtil.copy(o);
assertTrue(copied.getFINPaymentSchedInvVList().isEmpty()); |
Steps To Reproduce | Check runtime of the testcase either in ci or locally:
https://ci.openbravo.com/view/try/job/try-checks-pgsql/lastCompletedBuild/testReport/org.openbravo.test.dal/ViewTest/ [^]
test14914 => 19 sec |
Proposed Solution | |
Additional Information | |
Tags | No tags attached. |
Relationships | |
Attached Files | |
|
Issue History |
Date Modified | Username | Field | Change |
2018-01-16 10:32 | shuehner | New Issue | |
2018-01-16 10:32 | shuehner | Assigned To | => platform |
2018-01-16 10:32 | shuehner | OBNetwork customer | => No |
2018-01-16 10:32 | shuehner | Modules | => Core |
2018-01-16 10:32 | shuehner | Triggers an Emergency Pack | => No |
2018-02-09 10:17 | alostale | Assigned To | platform => alostale |
2018-02-09 10:17 | alostale | Status | new => scheduled |
2018-02-09 10:33 | alostale | Review Assigned To | => caristu |
2018-02-09 10:34 | hgbot | Checkin | |
2018-02-09 10:34 | hgbot | Note Added: 0102296 | |
2018-02-09 10:34 | hgbot | Status | scheduled => resolved |
2018-02-09 10:34 | hgbot | Resolution | open => fixed |
2018-02-09 10:34 | hgbot | Fixed in SCM revision | => http://code.openbravo.com/erp/devel/pi/rev/65a8e7ba6ceb0e9721f7c3a2cb706d0c586b3ffd [^] |
2018-02-09 10:36 | alostale | Note Added: 0102297 | |
2018-02-12 12:39 | hgbot | Checkin | |
2018-02-12 12:39 | hgbot | Note Added: 0102330 | |
2018-02-12 12:40 | caristu | Note Added: 0102331 | |
2018-02-12 12:40 | caristu | Status | resolved => closed |
2018-02-12 12:40 | caristu | Fixed in Version | => 3.0PR18Q2 |
2018-02-22 18:19 | hudsonbot | Checkin | |
2018-02-22 18:19 | hudsonbot | Note Added: 0102739 | |
2018-02-22 18:19 | hudsonbot | Checkin | |
2018-02-22 18:19 | hudsonbot | Note Added: 0102746 | |
Notes |
|
(0102296)
|
hgbot
|
2018-02-09 10:34
|
|
Repository: erp/devel/pi
Changeset: 65a8e7ba6ceb0e9721f7c3a2cb706d0c586b3ffd
Author: Asier Lostalé <asier.lostale <at> openbravo.com>
Date: Fri Feb 09 10:15:25 2018 +0100
URL: http://code.openbravo.com/erp/devel/pi/rev/65a8e7ba6ceb0e9721f7c3a2cb706d0c586b3ffd [^]
fixed bug 37648: slow junit ViewTest test cases
testViews (renamed to viewsCanBeQueried)
* Queries all the visible records for all views in system loading those records
in memory. Now, record is limited to just one and we stop querying views once
one record is retrieved.
test14914
* All invoices in the instance were loaded in memory loading for those all their
payments and making a copy. Now only one invoice is loaded.
---
M src-test/src/org/openbravo/test/dal/ViewTest.java
---
|
|
|
|
|
|
(0102330)
|
hgbot
|
2018-02-12 12:39
|
|
|
|
|
Code reviewed + tested OK. |
|
|
|
|
|
|
|