• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java ResourcePerspectives类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.sonar.api.component.ResourcePerspectives的典型用法代码示例。如果您正苦于以下问题:Java ResourcePerspectives类的具体用法?Java ResourcePerspectives怎么用?Java ResourcePerspectives使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



ResourcePerspectives类属于org.sonar.api.component包,在下文中一共展示了ResourcePerspectives类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: FlowSquidSensor

import org.sonar.api.component.ResourcePerspectives; //导入依赖的package包/类
public FlowSquidSensor(Settings settings, CheckFactory checkFactory, FileLinesContextFactory fileLinesContextFactory,
                        FileSystem fileSystem, ResourcePerspectives resourcePerspectives, PathResolver pathResolver) {
logger.debug("** FlowSquidSenser constructor");
this.settings = settings;
this.pathResolver = pathResolver;
   this.checks = checkFactory
     .<SquidCheck<Grammar>>create(CheckList.REPOSITORY_KEY)
     .addAnnotatedChecks((Iterable)CheckList.getChecks(settings.getBoolean(FlowPlugin.IGNORE_TOPLEVEL_KEY),false));
   this.nodeChecks = checkFactory
	      .<SquidCheck<Grammar>>create(CheckList.REPOSITORY_KEY)
	      .addAnnotatedChecks((Iterable)CheckList.getChecks(settings.getBoolean(FlowPlugin.IGNORE_TOPLEVEL_KEY), true));
   this.fileLinesContextFactory = fileLinesContextFactory;
   this.fileSystem = fileSystem;
   this.resourcePerspectives = resourcePerspectives;
   this.mainFilePredicates = fileSystem.predicates().and(
     fileSystem.predicates().hasLanguage(FlowLanguage.KEY),
     fileSystem.predicates().hasType(InputFile.Type.MAIN));
 }
 
开发者ID:I8C,项目名称:sonar-flow-plugin,代码行数:19,代码来源:FlowSquidSensor.java


示例2: createIssueSensorBackedByMocks

import org.sonar.api.component.ResourcePerspectives; //导入依赖的package包/类
@Before
  public void createIssueSensorBackedByMocks() {
    ResourcePerspectives resourcePerspectives = mock(ResourcePerspectives.class);
    Checks<Object> checks = mock(Checks.class);
    CheckFactory checkFactory = mock(CheckFactory.class);
    when(checkFactory.create(Mockito.anyString())).thenReturn(checks);
    List<Object> checksList = Arrays.asList(new Object[] {realIfOneStringExistsBothMustExistMultiFileCheck});
    when(checks.all()).thenReturn(checksList);

    when(checks.ruleKey(Mockito.isA(StringDisallowedIfMatchInAnotherFileCheck.class))).thenReturn(RuleKey.of("text", "StringDisallowedIfMatchInAnotherFileCheck"));
    when(checks.ruleKey(Mockito.isA(MultiFileIfOneStringExistsThenBothMustExistCheck.class))).thenReturn(RuleKey.of("text", "MultiFileIfOneStringExistsThenBothMustExistCheck"));
//    realStringDisallowedMultiFileCheck.setRuleKey(RuleKey.parse("text:StringDisallowedIfMatchInAnotherFileCheck")); // Not strictly necessary here. Normally set by the framework to the value in the Check class's annotation

    when(checks.addAnnotatedChecks(Mockito.anyCollection())).thenReturn(checks);
    mockIssuable = mock(Issuable.class);
    when(resourcePerspectives.as(Mockito.eq(Issuable.class), Mockito.isA(InputFile.class))).thenReturn(mockIssuable);
    IssueBuilder mockIssueBuilder = mock(IssueBuilder.class);
    when(mockIssuable.newIssueBuilder()).thenReturn(mockIssueBuilder);
    when(mockIssueBuilder.ruleKey(Mockito.isA(RuleKey.class))).thenReturn(mockIssueBuilder);
    when(mockIssueBuilder.line(Mockito.anyInt())).thenReturn(mockIssueBuilder);
    when(mockIssueBuilder.message(Mockito.anyString())).thenReturn(mockIssueBuilder);
    when(mockIssueBuilder.build()).thenReturn(mock(Issue.class));

    sensor = new TextIssueSensor(fs, resourcePerspectives, checkFactory, project);
  }
 
开发者ID:gjd6640,项目名称:sonar-text-plugin,代码行数:26,代码来源:MultiFileIfOneExistsThenBothMustExistCheckTest.java


示例3: createIssueSensorBackedByMocks

import org.sonar.api.component.ResourcePerspectives; //导入依赖的package包/类
@Before
  public void createIssueSensorBackedByMocks() {
    ResourcePerspectives resourcePerspectives = mock(ResourcePerspectives.class);
    Checks<Object> checks = mock(Checks.class);
    CheckFactory checkFactory = mock(CheckFactory.class);
    when(checkFactory.create(Mockito.anyString())).thenReturn(checks);
    List<Object> checksList = Arrays.asList(new Object[] {realStringDisallowedMultiFileCheck});
    when(checks.all()).thenReturn(checksList);

    when(checks.ruleKey(Mockito.isA(StringDisallowedIfMatchInAnotherFileCheck.class))).thenReturn(RuleKey.of("text", "StringDisallowedIfMatchInAnotherFileCheck"));
//    realStringDisallowedMultiFileCheck.setRuleKey(RuleKey.parse("text:StringDisallowedIfMatchInAnotherFileCheck")); // Not strictly necessary here. Normally set by the framework to the value in the Check class's annotation

    when(checks.addAnnotatedChecks(Mockito.anyCollection())).thenReturn(checks);
    mockIssuable = mock(Issuable.class);
    when(resourcePerspectives.as(Mockito.eq(Issuable.class), Mockito.isA(InputFile.class))).thenReturn(mockIssuable);
    IssueBuilder mockIssueBuilder = mock(IssueBuilder.class);
    when(mockIssuable.newIssueBuilder()).thenReturn(mockIssueBuilder);
    when(mockIssueBuilder.ruleKey(Mockito.isA(RuleKey.class))).thenReturn(mockIssueBuilder);
    when(mockIssueBuilder.line(Mockito.anyInt())).thenReturn(mockIssueBuilder);
    when(mockIssueBuilder.message(Mockito.anyString())).thenReturn(mockIssueBuilder);
    when(mockIssueBuilder.build()).thenReturn(mock(Issue.class));

    sensor = new TextIssueSensor(fs, resourcePerspectives, checkFactory, project);
  }
 
开发者ID:gjd6640,项目名称:sonar-text-plugin,代码行数:25,代码来源:StringDisallowedIfMatchInAnotherFileCheckTest.java


示例4: createIssueSensorBackedByMocks

import org.sonar.api.component.ResourcePerspectives; //导入依赖的package包/类
@Before
public void createIssueSensorBackedByMocks() {
ResourcePerspectives resourcePerspectives = mock(ResourcePerspectives.class);
Checks<Object> checks = mock(Checks.class);
CheckFactory checkFactory = mock(CheckFactory.class);
when(checkFactory.create(Mockito.anyString())).thenReturn(checks);
textCheckMock = mock(AbstractTextCheck.class);
List<Object> checksList = Arrays.asList(new Object[] {textCheckMock});
when(checks.all()).thenReturn(checksList);

when(checks.addAnnotatedChecks(Mockito.anyCollection())).thenReturn(checks);
mockIssuable = mock(Issuable.class);
when(resourcePerspectives.as(Mockito.eq(Issuable.class), Mockito.isA(InputFile.class))).thenReturn(mockIssuable);
IssueBuilder mockIssueBuilder = mock(IssueBuilder.class);
when(mockIssuable.newIssueBuilder()).thenReturn(mockIssueBuilder);
when(mockIssueBuilder.ruleKey(Mockito.isA(RuleKey.class))).thenReturn(mockIssueBuilder);
when(mockIssueBuilder.line(Mockito.anyInt())).thenReturn(mockIssueBuilder);
when(mockIssueBuilder.message(Mockito.anyString())).thenReturn(mockIssueBuilder);
when(mockIssueBuilder.build()).thenReturn(mock(Issue.class));

sensor = new TextIssueSensor(fs, resourcePerspectives, checkFactory, project);
}
 
开发者ID:gjd6640,项目名称:sonar-text-plugin,代码行数:23,代码来源:IssueSensorTest.java


示例5: shouldExecuteOnProject

import org.sonar.api.component.ResourcePerspectives; //导入依赖的package包/类
@Test
public void shouldExecuteOnProject() {
  Settings settings = mock(Settings.class);
  RulesProfile profile = mock(RulesProfile.class);
  DefaultFileSystem fileSystem = new DefaultFileSystem();
  ResourcePerspectives perspectives = mock(ResourcePerspectives.class);

  Project project = mock(Project.class);

  ReSharperSensor sensor = new ReSharperSensor(
    new ReSharperConfiguration("lang", "foo-resharper", "fooReportkey"),
    settings, profile, fileSystem, perspectives);

  assertThat(sensor.shouldExecuteOnProject(project)).isFalse();

  fileSystem.add(new DefaultInputFile("").setAbsolutePath("").setLanguage("foo"));
  when(profile.getActiveRulesByRepository("foo-resharper")).thenReturn(ImmutableList.<ActiveRule>of());
  assertThat(sensor.shouldExecuteOnProject(project)).isFalse();

  fileSystem.add(new DefaultInputFile("").setAbsolutePath("").setLanguage("lang"));
  when(profile.getActiveRulesByRepository("foo-resharper")).thenReturn(ImmutableList.of(mock(ActiveRule.class)));
  assertThat(sensor.shouldExecuteOnProject(project)).isTrue();

  when(profile.getActiveRulesByRepository("foo-resharper")).thenReturn(ImmutableList.<ActiveRule>of());
  assertThat(sensor.shouldExecuteOnProject(project)).isFalse();
}
 
开发者ID:GregBartlett,项目名称:sonar-resharper,代码行数:27,代码来源:ReSharperSensorTest.java


示例6: CoverageSensor

import org.sonar.api.component.ResourcePerspectives; //导入依赖的package包/类
public CoverageSensor(FileSystem fileSystem, ResourcePerspectives perspectives,
    CoverageConfiguration config, ActiveRules activeRules,
    CoverageProjectStore coverageProjectStore, SonarClient sonar) {
  this.fileSystem = fileSystem;
  this.perspectives = perspectives;
  this.config = config;
  this.activeRules = activeRules;
  this.coverageProjectStore = coverageProjectStore;
  this.sonar = sonar;
}
 
开发者ID:AmadeusITGroup,项目名称:sonar-coverage-evolution,代码行数:11,代码来源:CoverageSensor.java


示例7: ApexSquidSensor

import org.sonar.api.component.ResourcePerspectives; //导入依赖的package包/类
/**
 * Default construct to initialize the variables.
 *
 * @param fileSystem source files.
 * @param perspectives perspective from resources.
 * @param checkFactory factory to create a check.
 */
public ApexSquidSensor(FileSystem fileSystem, ResourcePerspectives perspectives, CheckFactory checkFactory) {
    this.checks = checkFactory
            .<SquidAstVisitor<Grammar>>create(CheckList.REPOSITORY_KEY)
            .addAnnotatedChecks(CheckList.getChecks());
    this.fileSystem = fileSystem;
    this.resourcePerspectives = perspectives;

    FilePredicates predicates = fileSystem.predicates();
    filePredicate = predicates.and(
            predicates.hasType(InputFile.Type.MAIN),
            predicates.hasLanguage(Apex.KEY));
}
 
开发者ID:fundacionjala,项目名称:enforce-sonarqube-plugin,代码行数:20,代码来源:ApexSquidSensor.java


示例8: setUp

import org.sonar.api.component.ResourcePerspectives; //导入依赖的package包/类
@Before
public void setUp() {
    ActiveRules activeRules = (new ActiveRulesBuilder())
            .create(RuleKey.of(CheckList.REPOSITORY_KEY, "PrintStatementUsage"))
            .setName("Print Statement Usage")
            .activate()
            .build();
    CheckFactory checkFactory = new CheckFactory(activeRules);
    perspectives = mock(ResourcePerspectives.class);
    fileSystem = new DefaultFileSystem(new File("."));
    squidSensor = new ApexSquidSensor(fileSystem, perspectives, checkFactory);
}
 
开发者ID:fundacionjala,项目名称:enforce-sonarqube-plugin,代码行数:13,代码来源:ApexSquidSensorTest.java


示例9: TextIssueSensor

import org.sonar.api.component.ResourcePerspectives; //导入依赖的package包/类
/**
 * Use of IoC to get FileSystem
 */
public TextIssueSensor(final FileSystem fs, final ResourcePerspectives perspectives, final CheckFactory checkFactory, final Project project) {
  this.checks = checkFactory.create(CheckRepository.REPOSITORY_KEY).addAnnotatedChecks(CheckRepository.getCheckClasses());
  this.fs = fs;
  this.resourcePerspectives = perspectives;
  this.project = project;

  // This data structure is shared across all cross-file checks so they can see each others' data.
  // Each file with any trigger or disallow match gets a listitem indicating the specifics of the Check that matched including line number. This object reference stays with the check and gets referenced later inside the "raiseIssuesAfterScan()" method call.
  this.crossFileChecksRawResults = Maps.newHashMap();
}
 
开发者ID:gjd6640,项目名称:sonar-text-plugin,代码行数:14,代码来源:TextIssueSensor.java


示例10: IssueSensor

import org.sonar.api.component.ResourcePerspectives; //导入依赖的package包/类
/**
 * Use of IoC to get FileSystem
 */
public IssueSensor(FileSystem fs, ResourcePerspectives perspectives, ActiveRules activeRules) {
	this.fs = fs;
	this.perspectives = perspectives;
	this.activeRules = activeRules;
	this.activeRules.toString(); // could be used
}
 
开发者ID:fastconnect,项目名称:tibco-codereview,代码行数:10,代码来源:IssueSensor.java


示例11: ReSharperSensor

import org.sonar.api.component.ResourcePerspectives; //导入依赖的package包/类
public ReSharperSensor(ReSharperConfiguration reSharperConf, Settings settings, RulesProfile profile, FileSystem fileSystem, ResourcePerspectives perspectives) {
  this.reSharperConf = reSharperConf;
  this.settings = settings;
  this.profile = profile;
  this.fileSystem = fileSystem;
  this.perspectives = perspectives;
}
 
开发者ID:GregBartlett,项目名称:sonar-resharper,代码行数:8,代码来源:ReSharperSensor.java


示例12: testSensorInstantiation

import org.sonar.api.component.ResourcePerspectives; //导入依赖的package包/类
@Test
public void testSensorInstantiation() throws Exception {
  CSharpReSharperSensor sensor = new CSharpReSharperSensor(new Settings(), mock(RulesProfile.class), new DefaultFileSystem(), mock(ResourcePerspectives.class));
  ReSharperConfiguration configuration = sensor.getConfiguration();
  assertThat(configuration.languageKey()).isEqualTo("cs");
  assertThat(configuration.repositoryKey()).isEqualTo("resharper-cs");
  assertThat(configuration.reportPathKey()).isEqualTo("sonar.resharper.cs.reportPath");
}
 
开发者ID:GregBartlett,项目名称:sonar-resharper,代码行数:9,代码来源:CSharpReSharperProviderTest.java


示例13: testSensorInstantiation

import org.sonar.api.component.ResourcePerspectives; //导入依赖的package包/类
@Test
public void testSensorInstantiation() throws Exception {
  VBNetReSharperSensor sensor = new VBNetReSharperSensor(new Settings(), mock(RulesProfile.class), new DefaultFileSystem(), mock(ResourcePerspectives.class));
  ReSharperConfiguration configuration = sensor.getConfiguration();
  assertThat(configuration.languageKey()).isEqualTo("vbnet");
  assertThat(configuration.repositoryKey()).isEqualTo("resharper-vbnet");
  assertThat(configuration.reportPathKey()).isEqualTo("sonar.resharper.vbnet.reportPath");
}
 
开发者ID:GregBartlett,项目名称:sonar-resharper,代码行数:9,代码来源:VBNetReSharperProviderTest.java


示例14: CheckstyleAuditListener

import org.sonar.api.component.ResourcePerspectives; //导入依赖的package包/类
public CheckstyleAuditListener(RuleFinder ruleFinder, FileSystem fileSystem,
        ResourcePerspectives perspectives) {
    this.ruleFinder = ruleFinder;
    this.fileSystem = fileSystem;
    this.perspectives = perspectives;
}
 
开发者ID:checkstyle,项目名称:sonar-checkstyle,代码行数:7,代码来源:CheckstyleAuditListener.java


示例15: setup

import org.sonar.api.component.ResourcePerspectives; //导入依赖的package包/类
@Before
public void setup() {
    decorator = new ApexCommonRulesDecorator(mock(FileSystem.class),
            mock(CheckFactory.class),
            mock(ResourcePerspectives.class));
}
 
开发者ID:fundacionjala,项目名称:enforce-sonarqube-plugin,代码行数:7,代码来源:ApexCommonRulesDecoratorTest.java


示例16: PortabilitySensor

import org.sonar.api.component.ResourcePerspectives; //导入依赖的package包/类
/**
 * Use of IoC to get ResourcePerspective and FileSystem
 */
public PortabilitySensor(FileSystem fileSystem, ResourcePerspectives perspectives) {
    this.fileSystem = fileSystem;
    this.perspectives = perspectives;
}
 
开发者ID:uniba-dsg,项目名称:sonar-prope-plugin,代码行数:8,代码来源:PortabilitySensor.java


示例17: CSharpReSharperSensor

import org.sonar.api.component.ResourcePerspectives; //导入依赖的package包/类
public CSharpReSharperSensor(Settings settings, RulesProfile profile, FileSystem fileSystem, ResourcePerspectives perspectives) {
  super(RESHARPER_CONF, settings, profile, fileSystem, perspectives);
}
 
开发者ID:GregBartlett,项目名称:sonar-resharper,代码行数:4,代码来源:CSharpReSharperProvider.java


示例18: VBNetReSharperSensor

import org.sonar.api.component.ResourcePerspectives; //导入依赖的package包/类
public VBNetReSharperSensor(Settings settings, RulesProfile profile, FileSystem fileSystem, ResourcePerspectives perspectives) {
  super(RESHARPER_CONF, settings, profile, fileSystem, perspectives);
}
 
开发者ID:GregBartlett,项目名称:sonar-resharper,代码行数:4,代码来源:VBNetReSharperProvider.java


示例19: analyze_report_path

import org.sonar.api.component.ResourcePerspectives; //导入依赖的package包/类
@Test
public void analyze_report_path() throws Exception {
  String languageKey = "foo";
  String reportPathKey = "fooReport";
  Settings settings = new Settings();
  settings.setProperty(ReSharperPlugin.SOLUTION_FILE_PROPERTY_KEY, "CSharpPlayground.sln");
  settings.setProperty(ReSharperPlugin.PROJECT_NAME_PROPERTY_KEY, "MyLibrary");
  settings.setProperty(reportPathKey, "src/test/resources/SensorTest/report.xml");

  RulesProfile profile = mock(RulesProfile.class);
  DefaultFileSystem fileSystem = new DefaultFileSystem();
  ResourcePerspectives perspectives = mock(ResourcePerspectives.class);

  ReSharperSensor sensor = new ReSharperSensor(
    new ReSharperConfiguration(languageKey, "foo-resharper", "fooReport"),
    settings, profile, fileSystem, perspectives);

  List<ActiveRule> activeRules = mockActiveRules("RedundantUsingDirective");
  when(profile.getActiveRulesByRepository("foo-resharper")).thenReturn(activeRules);

  File workingDir = new File("src/test/resources/SensorTest");
  fileSystem.setWorkDir(workingDir);

  DefaultInputFile class1Cs = new DefaultInputFile("MyLibrary/Class1.cs").setAbsolutePath(new File("MyLibrary/Class1.cs").getAbsolutePath()).setLanguage(languageKey);
  fileSystem.add(class1Cs);
  DefaultInputFile assemblyInfoCs = new DefaultInputFile("MyLibrary/Properties/AssemblyInfo.cs").setAbsolutePath(new File("MyLibrary/Properties/AssemblyInfo.cs").getAbsolutePath()).setLanguage(languageKey);
  fileSystem.add(assemblyInfoCs);

  Issue issue1 = mock(Issue.class);
  IssueBuilder issueBuilder1 = mockIssueBuilder();
  when(issueBuilder1.build()).thenReturn(issue1);

  Issuable issuable1 = mock(Issuable.class);
  when(perspectives.as(Issuable.class, class1Cs)).thenReturn(issuable1);
  when(issuable1.newIssueBuilder()).thenReturn(issueBuilder1);

  Issue issue2 = mock(Issue.class);
  IssueBuilder issueBuilder2 = mockIssueBuilder();
  when(issueBuilder2.build()).thenReturn(issue2);

  Issuable issuable2 = mock(Issuable.class);
  when(perspectives.as(Issuable.class, assemblyInfoCs)).thenReturn(issuable2);
  when(issuable2.newIssueBuilder()).thenReturn(issueBuilder2);

  sensor.analyse(mock(Project.class), mock(SensorContext.class));

  verify(issuable1).addIssue(issue1);
  verify(issuable2).addIssue(issue2);

  verify(issueBuilder1).line(1);
  verify(issueBuilder1).message("Using directive is not required by the code and can be safely removed");

  verify(issueBuilder2).line(2);
  verify(issueBuilder2).message("Using directive is not required by the code and can be safely removed");
}
 
开发者ID:GregBartlett,项目名称:sonar-resharper,代码行数:56,代码来源:ReSharperSensorTest.java


示例20: createReSharperSensor

import org.sonar.api.component.ResourcePerspectives; //导入依赖的package包/类
private static ReSharperSensor createReSharperSensor(Settings settings) {
  ReSharperConfiguration reSharperConf = new ReSharperConfiguration("", "", ReSharperPlugin.CS_REPORT_PATH_KEY);
  return new ReSharperSensor(reSharperConf, settings, mock(RulesProfile.class), mock(FileSystem.class), mock(ResourcePerspectives.class));
}
 
开发者ID:GregBartlett,项目名称:sonar-resharper,代码行数:5,代码来源:ReSharperSensorTest.java



注:本文中的org.sonar.api.component.ResourcePerspectives类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java ReplyState类代码示例发布时间:2022-05-22
下一篇:
Java ContainerState类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap