
org.sonar.server.test.CoverageService Maven / Gradle / Ivy
/*
* SonarQube
* Copyright (C) 2009-2016 SonarSource SA
* mailto:contact AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package org.sonar.server.test;
import com.google.common.collect.Maps;
import java.util.Map;
import javax.annotation.CheckForNull;
import org.sonar.api.measures.CoreMetrics;
import org.sonar.api.server.ServerSide;
import org.sonar.api.utils.KeyValueFormat;
import org.sonar.api.web.UserRole;
import org.sonar.db.DbSession;
import org.sonar.db.MyBatis;
import org.sonar.db.measure.MeasureDao;
import org.sonar.db.measure.MeasureDto;
import org.sonar.server.user.UserSession;
@ServerSide
public class CoverageService {
public enum TYPE {
UT, IT, OVERALL
}
private final MyBatis myBatis;
private final MeasureDao measureDao;
private final UserSession userSession;
public CoverageService(MyBatis myBatis, MeasureDao measureDao, UserSession userSession) {
this.myBatis = myBatis;
this.measureDao = measureDao;
this.userSession = userSession;
}
public void checkPermission(String fileKey) {
userSession.checkComponentPermission(UserRole.CODEVIEWER, fileKey);
}
public Map getHits(String fileKey, CoverageService.TYPE type) {
switch (type) {
case IT:
return findDataFromComponent(fileKey, CoreMetrics.IT_COVERAGE_LINE_HITS_DATA_KEY);
case OVERALL:
return findDataFromComponent(fileKey, CoreMetrics.OVERALL_COVERAGE_LINE_HITS_DATA_KEY);
default:
return findDataFromComponent(fileKey, CoreMetrics.COVERAGE_LINE_HITS_DATA_KEY);
}
}
public Map getConditions(String fileKey, CoverageService.TYPE type) {
switch (type) {
case IT:
return findDataFromComponent(fileKey, CoreMetrics.IT_CONDITIONS_BY_LINE_KEY);
case OVERALL:
return findDataFromComponent(fileKey, CoreMetrics.OVERALL_CONDITIONS_BY_LINE_KEY);
default:
return findDataFromComponent(fileKey, CoreMetrics.CONDITIONS_BY_LINE_KEY);
}
}
public Map getCoveredConditions(String fileKey, CoverageService.TYPE type) {
switch (type) {
case IT:
return findDataFromComponent(fileKey, CoreMetrics.IT_COVERED_CONDITIONS_BY_LINE_KEY);
case OVERALL:
return findDataFromComponent(fileKey, CoreMetrics.OVERALL_COVERED_CONDITIONS_BY_LINE_KEY);
default:
return findDataFromComponent(fileKey, CoreMetrics.COVERED_CONDITIONS_BY_LINE_KEY);
}
}
@CheckForNull
private Map findDataFromComponent(String fileKey, String metricKey) {
DbSession session = myBatis.openSession(false);
try {
MeasureDto data = measureDao.selectByComponentKeyAndMetricKey(session, fileKey, metricKey);
String dataValue = data != null ? data.getData() : null;
if (dataValue != null) {
return KeyValueFormat.parseIntInt(dataValue);
}
return Maps.newHashMap();
} finally {
MyBatis.closeQuietly(session);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy