/* * Sonar Web Plugin * Copyright (C) 2010 Matthijs Galesloot * dev@sonar.codehaus.org * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.sonar.plugins.web.rules; import static junit.framework.Assert.assertNotNull; import static junit.framework.Assert.assertTrue; import static org.hamcrest.core.Is.is; import static org.hamcrest.number.OrderingComparisons.greaterThan; import static org.junit.Assert.assertThat; import java.util.List; import org.junit.Test; import org.sonar.api.profiles.ProfileDefinition; import org.sonar.api.profiles.RulesProfile; import org.sonar.api.profiles.XMLProfileParser; import org.sonar.api.rules.AnnotationRuleParser; import org.sonar.api.utils.ValidationMessages; import org.sonar.check.Rule; import org.sonar.plugins.web.AbstractWebPluginTester; import org.sonar.plugins.web.checks.AbstractPageCheck; /** * @author Matthijs Galesloot */ public class WebRulesRepositoryTest extends AbstractWebPluginTester { @Test public void createDefaultWebProfile() { ProfileDefinition profileDefinition = new DefaultWebProfile(new XMLProfileParser(newRuleFinder())); ValidationMessages validationMessages = ValidationMessages.create(); RulesProfile profile = profileDefinition.createProfile(validationMessages); assertThat(profile.getActiveRulesByRepository(WebRulesRepository.REPOSITORY_KEY).size(), greaterThan(1)); assertThat(validationMessages.hasErrors(), is(false)); } @Test public void createJSFProfile() { ProfileDefinition profileDefinition = new JSFProfile(new XMLProfileParser(newRuleFinder())); ValidationMessages validationMessages = ValidationMessages.create(); RulesProfile profile = profileDefinition.createProfile(validationMessages); assertThat(profile.getActiveRulesByRepository(WebRulesRepository.REPOSITORY_KEY).size(), greaterThan(1)); assertThat(validationMessages.hasErrors(), is(false)); } @Test public void initializeWebRulesRepository() { WebRulesRepository rulesRepository = new WebRulesRepository(new AnnotationRuleParser()); assertTrue(rulesRepository.createRules().size() > 20); } @Test public void createChecks() { ProfileDefinition profileDefinition = new DefaultWebProfile(new XMLProfileParser(newRuleFinder())); ValidationMessages validationMessages = ValidationMessages.create(); RulesProfile profile = profileDefinition.createProfile(validationMessages); List<AbstractPageCheck> checks = WebRulesRepository.createChecks(profile); // check annotation for (AbstractPageCheck check : checks) { Rule rule = check.getClass().getAnnotation(Rule.class); assertNotNull(rule.key()); assertNotNull(rule.name()); assertNotNull(rule.isoCategory()); } assertTrue(checks.size() > 20); } }