aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-core/src/test
Commit message (Collapse)AuthorAgeFilesLines
* SONAR-8151 remove property category Organizations from UI for 6.2Sébastien Lesaint2016-11-171-1/+1
|
* SONAR-8385 Provide an option to extend the landing pageStas Vilchik2016-11-161-1/+1
|
* SONAR-8332 add HTTP request UID to WebServer logsSébastien Lesaint2016-11-151-0/+19
|
* SONAR-8332 allow faster UUID generation with increment only changeSébastien Lesaint2016-11-151-0/+52
| | | | the 2 strategies (full new UUID or only increment changed) are exposed in new class UuidGeneratorImpl
* Update some copyright headers to 2016Simon Brandhof2016-11-141-1/+1
|
* Fix Quality flawsSimon Brandhof2016-11-121-7/+36
| | | | | - missing tests for Protobuf - remove incorrect imports of org.elasticsearch.common.Strings
* SONAR-8351 Send JSON payload over HTTP when project analysis is completeSimon Brandhof2016-11-091-1/+1
|
* SONAR-8351 Configure HTTP proxy URL from bootstrap processSimon Brandhof2016-11-091-55/+5
| | | | | | | Proxy is configured in conf/sonar.properties. The related properties are propagated to system properties by the first call to DefaultHttpDownloader. The correct approach is to directly configure the JVM properties when the bootstrap process creates web server and CE processes.
* SONAR-8355 Remove property 'supportsMeasureFilters' from ResourceType APIJulien Lancelot2016-11-091-11/+0
|
* SONAR-8281 Rework Sensor storage to merge multiple coverage reportsJulien HENRY2016-10-181-1/+1
|
* make DefaultHttpDownloaderTest work on both Java 7 and Java 8Sébastien Lesaint2016-10-121-9/+14
|
* Improve stability of ProgressLoggerTestSimon Brandhof2016-09-141-1/+2
| | | | | | | | | | | | | | | | | | | in order to avoid : log_at_fixed_intervals(org.sonar.core.util.ProgressLoggerTest) java.util.ConcurrentModificationException: null at java.util.ArrayList$Itr.checkForComodification(ArrayList.java:901) at java.util.ArrayList$Itr.next(ArrayList.java:851) at org.sonar.api.internal.google.common.collect.AbstractMapBasedMultimap$WrappedCollection$WrappedIterator.next(AbstractMapBasedMultimap.java:486) at java.util.Spliterators$IteratorSpliterator.tryAdvance(Spliterators.java:1812) at java.util.stream.ReferencePipeline.forEachWithCancel(ReferencePipeline.java:126) at java.util.stream.AbstractPipeline.copyIntoWithCancel(AbstractPipeline.java:498) at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:485) at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:471) at java.util.stream.FindOps$FindOp.evaluateSequential(FindOps.java:152) at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) at java.util.stream.ReferencePipeline.findFirst(ReferencePipeline.java:464) at org.sonar.core.util.ProgressLoggerTest.hasInfoLog(ProgressLoggerTest.java:71) at org.sonar.core.util.ProgressLoggerTest.log_at_fixed_intervals(ProgressLoggerTest.java:44)
* Improve stability of ProgressLoggerTestSimon Brandhof2016-09-131-11/+18
|
* SONAR-6662 add ServerId to HTTP user agent of UPC clientSébastien Lesaint2016-09-121-2/+28
|
* SONAR-7851 add QProfileChangeDaoSimon Brandhof2016-09-121-0/+37
|
* SONAR-7678 server-side stateless settingsSimon Brandhof2016-09-062-17/+19
| | | | | | | | | | | | | | | | | | | | * Settings class becomes abstract as multiple implementations are used. Can't become an interface for binary backward-compatibility of API * tests should use MapSettings, an in-memory implementation of Settings * web server uses a thread-specific cache of settings when processing HTTP requests * web server does not have a cache of settings during startup, except for the system settings loaded from sonar.properties * Compute Engine uses a thread-specific cache of settings when processing a task. Cache is clear at end of task. * some useless methods of PersistentSettings are removed
* fix missing coverage on class CollectorsSébastien Lesaint2016-08-221-5/+102
|
* SONAR-7930 WS api/components/bulk_update_key dry run fails when invalid keyTeryk Bellahsene2016-08-121-1/+39
|
* add Collectors.join(Joiner)Sébastien Lesaint2016-07-211-0/+30
|
* add index and uniqueIndex to CollectorsSébastien Lesaint2016-07-211-8/+305
|
* merge GuavaCollectors into Collectors and rename methodsSébastien Lesaint2016-07-212-66/+39
|
* SONAR-7755 deploy/plugins/index.txt should expose SonarLint compatibilityJulien HENRY2016-07-072-11/+21
|
* SONAR-7727 Remove deprecated stuff from Resources APIJulien HENRY2016-07-051-1/+1
|
* SONAR-7727 Remove deprecated metrics + methods on SettingsJulien HENRY2016-07-051-1/+1
|
* Disable tests using symlink on WindowsJulien HENRY2016-07-051-0/+5
|
* add collectors util classes in sonar-coreSébastien Lesaint2016-07-042-0/+116
|
* Move org.sonar.core.user classes outside sonar-dbSimon Brandhof2016-06-061-0/+286
|
* SONAR-7635 Sanitize metric name and description in default l10n bundle and ↵Teryk Bellahsene2016-05-181-39/+70
| | | | CoreMetrics
* SONAR-7271 add "Server ID validated" to sysinfo pageSimon Brandhof2016-05-181-1/+0
|
* Add definition of property sonar.jdbc.passwordSimon Brandhof2016-05-181-0/+27
| | | | so that its type is set to PropertyType.PASSWORD.
* SONAR-7532 Profiler can now put context before or after timeSébastien Lesaint2016-05-112-12/+185
|
* SONAR-7595 Issues are not closed in some block move conditionsSimon Brandhof2016-05-091-1/+34
|
* SONAR-7429 defaults of HTTPS proxy are values of HTTP proxySimon Brandhof2016-04-141-0/+30
|
* SONAR-7458 Expose SQ Version in SensorContextJulien HENRY2016-03-301-64/+0
|
* SONAR-7472 Drop manual issues in issue trackingJulien Lancelot2016-03-291-75/+6
|
* SONAR-7473 Drop 'reporter' field from backendJulien Lancelot2016-03-291-5/+3
|
* renamed BatchMetrics to ScannerMetricsSébastien Lesaint2016-03-291-3/+3
|
* SONAR-7467 Drop/deprecate action plan APITeryk Bellahsene2016-03-251-2/+0
|
* SONAR-7368 Deprecate quality_profiles measure and add data in scanner reportJulien HENRY2016-03-241-1/+1
|
* SONAR-7459 new interface org.sonar.api.PluginSimon Brandhof2016-03-181-5/+6
| | | | It allows to check version of SonarQube to filter extensions
* SONAR-7458 new component org.sonar.api.SonarQubeVersionSimon Brandhof2016-03-161-0/+64
|
* SONAR-7429 Should be possible to specify "https.proxyHost" and ↵Simon Brandhof2016-03-111-3/+7
| | | | "https.proxyPort" in "conf/sonar.properties"
* SONAR-7465 Support encryption of HTTP proxy propertiesSimon Brandhof2016-03-111-1/+47
| | | | | Removing the calls to Settings.getProperties() as it keeps encrypted properties values.
* SONAR-7345 Rename Issue debt to effort in APIJulien Lancelot2016-03-101-3/+3
|
* SONAR-7353 Move RuleType to APIJulien Lancelot2016-03-021-56/+0
|
* SONAR-7329 Rename IssueType to RuleTypeJulien Lancelot2016-03-021-8/+8
|
* Fix quality flawsSimon Brandhof2016-02-291-0/+6
|
* SONAR-7333 DB migration to set ISSUES.ISSUE_TYPESimon Brandhof2016-02-261-0/+50
|
* Move IssueUpdater from sonar-core to sonar-serverSimon Brandhof2016-02-251-574/+0
|
* Move issue workflow from sonar-core to sonar-serverSimon Brandhof2016-02-2511-983/+0
|