This page (revision-34) was last changed on 23-Apr-2022 17:06 by Harry Metske

This page was created on 23-Apr-2022 17:06 by Harry Metske

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
34 23-Apr-2022 17:06 32 KB Harry Metske to previous
33 23-Apr-2022 17:06 32 KB Harry Metske to previous | to last
32 23-Apr-2022 17:06 32 KB Harry Metske to previous | to last
31 23-Apr-2022 17:06 32 KB Harry Metske to previous | to last
30 23-Apr-2022 17:06 31 KB Harry Metske to previous | to last
29 23-Apr-2022 17:06 31 KB Harry Metske to previous | to last
28 23-Apr-2022 17:06 31 KB Harry Metske to previous | to last
27 23-Apr-2022 17:06 31 KB Harry Metske to previous | to last
26 23-Apr-2022 17:06 27 KB Harry Metske to previous | to last
25 23-Apr-2022 17:06 27 KB Harry Metske to previous | to last
24 23-Apr-2022 17:06 24 KB Harry Metske to previous | to last 3.0.0-svn-80
23 23-Apr-2022 17:06 19 KB Harry Metske to previous | to last
22 23-Apr-2022 17:06 19 KB Harry Metske to previous | to last
21 23-Apr-2022 17:06 17 KB Harry Metske to previous | to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 359 added 62 lines
!! Some useful queries
! all testsuites per tag having errors or failures
{{{
mysql> select tag,name,tests,errors,failures from testsuiteresult where errors>0 or failures > 0 group by tag,name ;
+--------------+-------------------------------------------------+-------+--------+----------+
| tag | name | tests | errors | failures |
+--------------+-------------------------------------------------+-------+--------+----------+
| 2.8.2-svn-13 | com.ecyrd.jspwiki.dav.AttachmentDavProviderTest | 3 | 0 | 1 |
| 2.8.2-svn-13 | com.ecyrd.jspwiki.WikiEngineTest | 44 | 0 | 1 |
| 3.0.0-svn-71 | org.apache.wiki.content.ContentManagerTest | 4 | 4 | 0 |
| 3.0.0-svn-71 | org.apache.wiki.ui.migrator.BundleMigratorTest | 8 | 1 | 0 |
| 3.0.0-svn-71 | org.apache.wiki.WikiEngineTest | 44 | 0 | 1 |
+--------------+-------------------------------------------------+-------+--------+----------+
5 rows in set (0.00 sec)
}}}
! 10 most time taking testsuites
{{{
mysql> select tag,name,tests,time from testsuiteresult order by time desc limit 10;
+--------------+-------------------------------------------------------+-------+--------+
| tag | name | tests | time |
+--------------+-------------------------------------------------------+-------+--------+
| 3.0.0-svn-71 | stress.MassiveRepositoryTest | 1 | 78.442 |
| 2.8.2-svn-13 | stress.MassiveRepositoryTest | 1 | 69.571 |
| 3.0.0-svn-71 | org.apache.wiki.parser.JSPWikiMarkupParserTest | 205 | 66.344 |
| 3.0.0-svn-71 | org.apache.wiki.search.SearchManagerTest | 6 | 42.688 |
| 2.8.2-svn-13 | com.ecyrd.jspwiki.search.SearchManagerTest | 6 | 40.240 |
| 3.0.0-svn-71 | org.apache.wiki.WikiEngineTest | 44 | 35.495 |
| 2.8.2-svn-13 | com.ecyrd.jspwiki.WikiEngineTest | 44 | 20.025 |
| 3.0.0-svn-71 | org.apache.wiki.providers.BasicAttachmentProviderTest | 12 | 13.836 |
| 3.0.0-svn-71 | org.apache.wiki.action.UserProfileActionBeanTest | 6 | 12.445 |
| 3.0.0-svn-71 | org.apache.wiki.action.GroupActionBeanTest | 6 | 12.310 |
+--------------+-------------------------------------------------------+-------+--------+
10 rows in set (0.01 sec)
}}}
! 15 most time taking testcase methods
{{{
mysql> select tag,classname,name,time from testcaseresult order by time desc limit 15;
+--------------+-----------------------------------------------+-------------------------------------+--------+
| tag | classname | name | time |
+--------------+-----------------------------------------------+-------------------------------------+--------+
| 3.0.0-svn-71 | stress.MassiveRepositoryTest | testMassiveRepository1 | 78.440 |
| 2.8.2-svn-13 | stress.MassiveRepositoryTest | testMassiveRepository1 | 69.569 |
| 3.0.0-svn-71 | org.apache.wiki.search.SearchManagerTest | testSimpleSearch | 10.360 |
| 3.0.0-svn-71 | org.apache.wiki.search.SearchManagerTest | testSimpleSearch2 | 10.322 |
| 3.0.0-svn-71 | org.apache.wiki.search.SearchManagerTest | testSimpleSearch3 | 10.316 |
| 2.8.2-svn-13 | com.ecyrd.jspwiki.search.SearchManagerTest | testSimpleSearch | 10.070 |
| 2.8.2-svn-13 | com.ecyrd.jspwiki.search.SearchManagerTest | testSimpleSearch2 | 10.029 |
| 2.8.2-svn-13 | com.ecyrd.jspwiki.search.SearchManagerTest | testSimpleSearch3 | 10.029 |
| 3.0.0-svn-71 | org.apache.wiki.providers.RCSFileProviderTest | testMillionChanges | 7.179 |
| 3.0.0-svn-71 | org.apache.wiki.WikiEngineTest | testExternalModificationRefs | 6.328 |
| 3.0.0-svn-71 | org.apache.wiki.WikiEngineTest | testExternalModification | 6.327 |
| 3.0.0-svn-71 | org.apache.wiki.WikiEngineTest | testExternalModificationRefsDeleted | 6.327 |
| 3.0.0-svn-71 | org.apache.wiki.search.SearchManagerTest | testTitleSearch | 6.065 |
| 2.8.2-svn-13 | com.ecyrd.jspwiki.WikiEngineTest | testExternalModificationRefsDeleted | 6.039 |
| 2.8.2-svn-13 | com.ecyrd.jspwiki.WikiEngineTest | testExternalModificationRefs | 6.037 |
+--------------+-----------------------------------------------+-------------------------------------+--------+
15 rows in set (0.06 sec)
}}}