aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-db/src/test
Commit message (Collapse)AuthorAgeFilesLines
* SONAR-8335 move LogBackHelper to subpackage loggingSébastien Lesaint2016-12-012-2/+2
|
* SONAR-8089 Add missing condition on snapshots.islast=trueJulien Lancelot2016-11-281-0/+34
|
* Speed-up drop of DB table on OracleSimon Brandhof2016-11-281-0/+10
|
* SONAR-8391 fix NPE when id is invalid in SNAPSHOTS.PATHSimon Brandhof2016-11-171-5/+13
|
* SONAR-8336 add properties to control SQL logs level in CE and WebSébastien Lesaint2016-11-162-6/+10
|
* SONAR-6912 do not deactivate last organization administratorSimon Brandhof2016-11-161-0/+69
|
* Project admin permission is not considered as a System AdminTeryk Bellahsene2016-11-151-0/+2
|
* SONAR-8292 Quality Profile change includes the author of the modificationTeryk Bellahsene2016-11-151-0/+18
|
* SONAR-8353 add WS api/webhooks/deliveriesSimon Brandhof2016-11-141-1/+48
|
* SONAR-8353 purge webhook deliveries when deleting projectSimon Brandhof2016-11-143-13/+78
|
* SONAR-8353 persist deliveries in Compute EngineSimon Brandhof2016-11-141-9/+25
| | | | Deliveries older than 1 month are purged.
* SONAR-8353 add WebhookDeliveryDaoSimon Brandhof2016-11-142-1/+132
|
* SONAR-8353 create table webhook_deliveriesSimon Brandhof2016-11-143-1/+75
|
* Update some copyright headers to 2016Simon Brandhof2016-11-141-1/+1
|
* SONAR-8377 Drop issue filters tablesJulien Lancelot2016-11-103-1/+73
|
* SONAR-8377 Remove issue filters daoJulien Lancelot2016-11-1015-556/+1
|
* SONAR-8355 Drop tables "measure_filters" and "measure_filter_favourites"Julien Lancelot2016-11-093-1/+73
|
* SONAR-8355 Remove measure filters DaoJulien Lancelot2016-11-096-248/+1
|
* SONAR-8354 Drop tables "active_dashboards", "dashboards", "widgets", ↵Julien Lancelot2016-11-095-1/+210
| | | | "widget_properties"
* SONAR-8354 Remove dao related to dashboardsJulien Lancelot2016-11-0917-626/+1
|
* Fix quality flawsJulien Lancelot2016-11-081-0/+12
|
* SONAR-8089 Create new MeasureDao#selectTreeByQueryJulien Lancelot2016-11-084-24/+240
|
* SONAR-8089 Merge ComponentDao#selectChildren and selectDescendantsJulien Lancelot2016-11-081-181/+72
|
* SONAR-8325 Restore selectByQuery with handlerJulien Lancelot2016-11-041-0/+114
|
* SONAR-6912 do not remove admin permission on user if no more adminsSimon Brandhof2016-11-031-0/+28
|
* SONAR-6912 do not remove a group member if no more adminsSimon Brandhof2016-11-032-0/+40
|
* SONAR-8325 Refactore MeasureDao#selectByQuery to improve readybilityJulien Lancelot2016-11-031-114/+0
|
* SONAR-8325 Improve MeasureDao#selectByQuery performanceJulien Lancelot2016-11-032-18/+208
| | | | | | It now accepts either a list of projects or a project with a list of components, but no more a list of components of any projects It's no more possible to query a list of any components, because when doing that the performance are very bad (it would probably requires to add a column PROJECT_MEASURES.PROJECT_UUID)
* SONAR-8089 SONAR-8325 Add missing join on projects in ↵Julien Lancelot2016-10-281-10/+26
| | | | MeasureMapper#selectByQuery
* SONAR-8283 Migrate quality gates after removall of IT/overall coverage metricsJulien Lancelot2016-10-263-1/+405
|
* SONAR-8160 WS measures/search handles permission check on several projectsJulien Lancelot2016-10-251-12/+16
|
* Fix quality flawsJulien Lancelot2016-10-251-0/+12
|
* SONAR-8221 Fix project measures indexing on MySQLJulien Lancelot2016-10-241-0/+291
| | | | Replace streaming of projects by first loading all projects once, then load measures project by project
* SONAR-8134 fix isolation of organizations when dropping global permissionsSimon Brandhof2016-10-211-8/+48
| | | | on user
* SONAR-8278 Support organizations in web service api/permissions/search_templatesSimon Brandhof2016-10-211-13/+15
|
* SONAR-8134 merge PermissionRepository into PermissionTemplateServiceSimon Brandhof2016-10-2112-907/+0
|
* make PermissionTemplateDaoTest more stableSébastien Lesaint2016-10-201-2/+2
|
* SONAR-8100 add GroupDao#deleteByOrganizationSébastien Lesaint2016-10-201-0/+45
|
* SONAR-8100 add PermissionTemplateDao#deleteByOrganizationSébastien Lesaint2016-10-202-0/+80
|
* SONAR-8100 add UserPermissionDao#deleteByOrganizationSébastien Lesaint2016-10-201-1/+53
|
* SONAR-8100 add GroupPermissionDao#deleteByOrganizationSébastien Lesaint2016-10-201-0/+55
|
* SONAR-8100 add PermissionTemplateDbTester to DbTesterSébastien Lesaint2016-10-204-3/+10
|
* SONAR-8267 SONAR-8265 add organization parameterSimon Brandhof2016-10-202-20/+46
| | | | | | | | to web services api/permissions/search_global_permissions and api/permissions/users. Both WS are touched at the same time as the same refactoring is required in UserPermissionDao.
* SONAR-8261 add test to UserIdentityAuthenticatorTest about organizationsSimon Brandhof2016-10-201-3/+3
|
* SONAR-8134 improve PermissionTemplateDaoSimon Brandhof2016-10-201-2/+2
| | | | | | - deprecate the methods that do not support organizations - do not commit session in DAO
* SONAR-8261 Support organizations in web service api/permissions/groupsSimon Brandhof2016-10-203-106/+126
|
* SONAR-8134 remove unused production code from RoleDaoSimon Brandhof2016-10-208-270/+21
|
* SONAR-8263 isolate organizations when removing user permissionsSimon Brandhof2016-10-203-6/+41
|
* SONAR-8192 skip MyBatis in RootFlagAssertionsSébastien Lesaint2016-10-191-8/+15
|
* SONAR-8192 set root flag in UserIdentityAuthenticatorSébastien Lesaint2016-10-192-1/+17
| | | | depending upon whether groups of the user have or not System Administer permision and whether, when it already exists, the user has user permission "System Administer"