Package org.sonar.api.batch.fs

Examples of org.sonar.api.batch.fs.InputFile


  @Test
  public void match_relative_path_and_insensitive_file_extension() throws Exception {
    PathPattern pattern = PathPattern.create("**/*Foo.java");

    File file = new File(temp.newFolder(), "src/main/java/org/MyFoo.JAVA");
    InputFile inputFile = new DefaultInputFile("ABCDE", "src/main/java/org/MyFoo.JAVA").setFile(file);
    assertThat(pattern.match(inputFile, false)).isTrue();

    file = new File(temp.newFolder(), "src/main/java/org/Other.java");
    inputFile = new DefaultInputFile("ABCDE", "src/main/java/org/Other.java").setFile(file);
    assertThat(pattern.match(inputFile, false)).isFalse();
View Full Code Here


  public void match_absolute_path() throws Exception {
    PathPattern pattern = PathPattern.create("file:**/src/main/**Foo.java");
    assertThat(pattern.toString()).isEqualTo("file:**/src/main/**Foo.java");

    File file = new File(temp.newFolder(), "src/main/java/org/MyFoo.java");
    InputFile inputFile = new DefaultInputFile("ABCDE", "src/main/java/org/MyFoo.java").setFile(file);
    assertThat(pattern.match(inputFile)).isTrue();

    // case sensitive by default
    file = new File(temp.newFolder(), "src/main/java/org/MyFoo.JAVA");
    inputFile = new DefaultInputFile("ABCDE", "src/main/java/org/MyFoo.JAVA").setFile(file);
View Full Code Here

  public void match_absolute_path_and_insensitive_file_extension() throws Exception {
    PathPattern pattern = PathPattern.create("file:**/src/main/**Foo.java");
    assertThat(pattern.toString()).isEqualTo("file:**/src/main/**Foo.java");

    File file = new File(temp.newFolder(), "src/main/java/org/MyFoo.JAVA");
    InputFile inputFile = new DefaultInputFile("ABCDE", "src/main/java/org/MyFoo.JAVA").setFile(file);
    assertThat(pattern.match(inputFile, false)).isTrue();

    file = new File(temp.newFolder(), "src/main/java/org/Other.JAVA");
    inputFile = new DefaultInputFile("ABCDE", "src/main/java/org/Other.JAVA").setFile(file);
    assertThat(pattern.match(inputFile, false)).isFalse();
View Full Code Here

  public Object get(Value value, Class clazz, CoderContext context) {
    DefaultMeasure newMeasure = new DefaultMeasure(null);
    String moduleKey = value.getString();
    if (moduleKey != null) {
      String relativePath = value.getString();
      InputFile f = inputPathCache.getFile(moduleKey, relativePath);
      newMeasure.onFile(f);
    } else {
      newMeasure.onProject();
    }
    Metric m = metricFinder.findByKey(value.getString());
View Full Code Here

        .put("sonar.projectDescription", "Description of Foo Project")
        .put("sonar.sources", "src")
        .build())
      .start();

    InputFile file = result.inputFile("src/sample.xoo");
    assertThat(result.highlightingTypeFor(file, 0)).containsExactly(TypeOfText.STRING);
    assertThat(result.highlightingTypeFor(file, 9)).containsExactly(TypeOfText.STRING);
    assertThat(result.highlightingTypeFor(file, 10)).isEmpty();
    assertThat(result.highlightingTypeFor(file, 11)).containsExactly(TypeOfText.KEYWORD);
View Full Code Here

        .put("sonar.sources", "src")
        .build())
      .start();
    System.out.println("Duration: " + (System.currentTimeMillis() - start));

    InputFile file = result.inputFile("src/sample.xoo");
    assertThat(result.highlightingTypeFor(file, 0)).containsExactly(TypeOfText.STRING);

  }
View Full Code Here

        .beginObject().name("measures")
        .beginArray();
      for (Measure<?> measure : measureCache.byModule(def.getKey())) {
        jsonWriter.beginObject()
          .prop("metricKey", measure.metric().key());
        InputFile inputFile = measure.inputFile();
        if (inputFile != null) {
          jsonWriter.prop("filePath", inputFile.relativePath());
        }
        jsonWriter.prop("value", String.valueOf(measure.value()))
          .endObject();
      }
      jsonWriter.endArray()
View Full Code Here

  @Rule
  public ExpectedException thrown = ExpectedException.none();

  @Test
  public void shouldFailIfNotSameNumberOfLines() {
    InputFile file = new DefaultInputFile("foo", "src/main/java/Foo.java").setLines(10);

    thrown.expect(IllegalArgumentException.class);
    thrown.expectMessage("Expected one blame result per line but provider returned 1 blame lines while file src/main/java/Foo.java has 10 lines");

    new DefaultBlameOutput(null, Arrays.asList(file)).blameResult(file, Arrays.asList(new BlameLine().revision("1").author("guy")));
View Full Code Here

      String relativePath = value.getString();
      if (type == 0) {
        InputDir dir = inputPathCache.getDir(moduleKey, relativePath);
        newIssue.onDir(dir);
      } else {
        InputFile f = inputPathCache.getFile(moduleKey, relativePath);
        newIssue.onFile(f);
        if (!value.isNull(true)) {
          newIssue.atLine(value.getInt());
        }
      }
View Full Code Here

        .put("sonar.projectDescription", "Description of Foo Project")
        .put("sonar.sources", "src")
        .build())
      .start();

    InputFile file = result.inputFile("src/sample.xoo");
    assertThat(result.symbolReferencesFor(file, 7, 10)).containsOnly(7, 27);
  }
View Full Code Here

TOP

Related Classes of org.sonar.api.batch.fs.InputFile

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.