All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ce.sonarqube.sonar-ws.6.1.source-code.ws-tests.proto Maven / Gradle / Ivy

There is a newer version: 7.7
Show newest version
// SonarQube, open source software quality management tool.
// Copyright (C) 2008-2015 SonarSource
// mailto:contact AT sonarsource DOT com
//
// SonarQube 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.
//
// SonarQube 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.

syntax = "proto2";

package sonarqube.ws.tests;

import "ws-commons.proto";

option java_package = "org.sonarqube.ws";
option java_outer_classname = "WsTests";
option optimize_for = SPEED;

// WS api/tests/list
message ListResponse {
  optional sonarqube.ws.commons.Paging paging = 1;
  repeated Test tests = 2;
}

// WS api/tests/covered_files
message CoveredFilesResponse {
  repeated CoveredFile files = 1;

  message CoveredFile {
    optional string id = 1;
    optional string key = 2;
    optional string longName = 3;
    optional int32 coveredLines = 4;
  }
}


message Test {
  optional string id = 1;
  optional string name = 2;
  optional string fileId = 3;
  optional string fileKey = 4;
  optional string fileName = 5;
  optional TestStatus status = 6;
  optional int64 durationInMs = 7;
  optional int32 coveredLines = 8;
  optional string message = 9;
  optional string stacktrace = 10;
}

enum TestStatus {
  OK = 1;
  FAILURE = 2;
  ERROR = 3;
  SKIPPED = 4;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy