
org.sonar.gherkin.checks.DuplicatedScenarioNamesCheck Maven / Gradle / Ivy
/*
* SonarQube Gherkin Analyzer
* Copyright (C) 2016-2016 David RACODON
* [email protected]
*
* 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.gherkin.checks;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Lists;
import org.sonar.check.Priority;
import org.sonar.check.Rule;
import org.sonar.plugins.gherkin.api.tree.BasicScenarioTree;
import org.sonar.plugins.gherkin.api.tree.NameTree;
import org.sonar.plugins.gherkin.api.tree.Tree;
import org.sonar.plugins.gherkin.api.visitors.SubscriptionVisitorCheck;
import org.sonar.squidbridge.annotations.ActivatedByDefault;
import org.sonar.squidbridge.annotations.SqaleConstantRemediation;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@Rule(
key = "duplicated-scenario-names",
name = "Scenarios should have a unique name",
priority = Priority.MAJOR,
tags = {Tags.PITFALL, Tags.READABILITY})
@SqaleConstantRemediation("10min")
@ActivatedByDefault
public class DuplicatedScenarioNamesCheck extends SubscriptionVisitorCheck {
private Map> names = new HashMap<>();
@Override
public List nodesToVisit() {
return ImmutableList.of(Tree.Kind.BACKGROUND, Tree.Kind.SCENARIO, Tree.Kind.SCENARIO_OUTLINE);
}
@Override
public void visitNode(Tree tree) {
NameTree nameTree = ((BasicScenarioTree) tree).name();
if (nameTree != null) {
if (names.containsKey(nameTree.text())) {
names.get(nameTree.text()).add(new FileNameTree(getContext().getFile(), nameTree));
} else {
names.put(nameTree.text(), Lists.newArrayList(new FileNameTree(getContext().getFile(), nameTree)));
}
}
}
public Map> getNames() {
return names;
}
@VisibleForTesting
void setNames(Map> names) {
this.names = names;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy