aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-db/src/test
Commit message (Collapse)AuthorAgeFilesLines
...
* 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"
* SONAR-8192 set/unset root with admin permission change though WSSébastien Lesaint2016-10-195-1/+495
| | | | this applies only to the admin permission of the default organization
* SONAR-8192 add OrganizationDbTester and add it to DbTesterSébastien Lesaint2016-10-195-25/+61
|
* Fix PermissionTemplateCharacteristicDaoTestSimon Brandhof2016-10-171-5/+1
| | | | | Test was passing for a bad reason: ids of template and characteristic were the sames in the test.
* SONAR-8272 SONAR-8273 organization in WS to apply permission templatesSimon Brandhof2016-10-162-86/+4
|
* SONAR-8253 do not delete the last administrators of organizationSimon Brandhof2016-10-163-33/+103
|
* SONAR-8134 isolate deletion of permissionsSimon Brandhof2016-10-162-65/+97
|
* SONAR-8134 merge PermissionMapper into AuthorizationDaoSimon Brandhof2016-10-1620-331/+295
|
* SONAR-8134 add dao to verify authorizationsSimon Brandhof2016-10-162-1/+147
|
* SONAR-8134 remove RoleDao#countComponentPermissions()Simon Brandhof2016-10-136-148/+69
| | | | | replaced by GroupPermissionDao#hasRootComponentPermissions() and UserPermissionDao#hasRootComponentPermissions()
* SONAR-8134 remove RoleDao#deleteGroupRole()Simon Brandhof2016-10-136-102/+76
| | | | replaced by GroupPermissionDao#delete()
* SONAR-8134 remove RoleDao#deleteGroupRolesByResourceId()Simon Brandhof2016-10-137-144/+18
| | | | Replaced by GroupPermissionDao#deleteByRootComponentId()
* SONAR-8134 make column group_roles.organization_uuid not nullSimon Brandhof2016-10-1346-109/+205
|
* SONAR-8134 populate column group_roles.organization_uuid on upgradeSimon Brandhof2016-10-133-1/+98
|
* SONAR-8134 feed column group_roles.organization_uuidSimon Brandhof2016-10-133-123/+85
| | | | when adding permissions to a group
* SONAR-8134 add column group_roles.organization_uuidSimon Brandhof2016-10-1346-113/+291
| | | | Column is currently empty.
* Support organizations in user group web servicesSimon Brandhof2016-10-1322-58/+111
|
* SONAR-8134 add column permission_templates.organization_uuidSimon Brandhof2016-10-1314-7/+341
|
* SONAR-8134 add column user_roles.organization_uuidSimon Brandhof2016-10-133-0/+218
|
* SONAR-8134 make column groups.organization_uuid not nullSimon Brandhof2016-10-133-1/+175
|
* SONAR-8134 prepare support of organizations in user group DAOSimon Brandhof2016-10-1319-316/+475
|
* SONAR-8134 prepare support of organizations in permission DAOSimon Brandhof2016-10-1352-1282/+163
|
* SONAR-8134 prepare support of organizations in permission template DAOSimon Brandhof2016-10-1323-122/+309
|
* SONAR-8134 create default organization in DbTesterSimon Brandhof2016-10-133-13/+95
|
* SONAR-8134 change signature of GroupDao#selectByName()Simon Brandhof2016-10-131-2/+2
|
* SONAR-8134 add search by organization and name in GroupDaoSimon Brandhof2016-10-132-2/+33
|
* SONAR-8134 Replace CountByProjectAndPermissionDto by CountPerProjectPermissionSimon Brandhof2016-10-132-10/+10
|
* SONAR-8134 add db column groups.organization_uuidSimon Brandhof2016-10-1312-141/+172
|
* SONAR-8206 add WS api/root/searchSébastien Lesaint2016-10-121-0/+18
|
* SONAR-8190 SONAR-8191 must not set/unset root on inactive userSébastien Lesaint2016-10-121-4/+28
|
* SONAR-8191 last root can't be unset via /api/root/unset_rootSébastien Lesaint2016-10-121-0/+95
|
* SONAR-8155 add UserDao.setRootSébastien Lesaint2016-10-121-0/+44
|
* SONAR-8155 support root in UserDto, UserDao and UTsSébastien Lesaint2016-10-1261-555/+1812
|
* SONAR-8155 SONAR-8156 add root column to table USERSSébastien Lesaint2016-10-127-1/+392
|
* SONAR-5857 Only "better than" operator is available for rating metricsJulien Lancelot2016-10-031-4/+22
|
* Automatic merge from branch-6.1ssjenka2016-10-031-0/+9
|\ | | | | | | | | * origin/branch-6.1: SONAR-8148 do not log data and decrease log level to debug