blob: 838ae0b8ff6fa904fae4d36733b7c4efc9c775ad [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one *
* or more contributor license agreements. See the NOTICE file *
* distributed with this work for additional information *
* regarding copyright ownership. The ASF licenses this file *
* to you 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.apache.rat.analysis.license;
import org.apache.rat.api.Document;
import org.apache.rat.document.MockLocation;
import org.apache.rat.report.claim.impl.xml.MockClaimReporter;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
public class ApacheSoftwareLicense20Test {
private MockClaimReporter reporter;
@Before
public void setUp() throws Exception {
reporter = new MockClaimReporter();
}
@Test
public void matches() throws Exception {
ApacheSoftwareLicense20 worker = new ApacheSoftwareLicense20();
assertTrue(worker.matches(ApacheSoftwareLicense20.FIRST_LICENSE_LINE));
assertTrue(worker.matches(" Licensed under the Apache License, Version 2.0 (the \"License\");"));
assertTrue(worker.matches("Licensed under the Apache License, Version 2.0 (the \"License\");"));
assertTrue(worker.matches(" * Licensed under the Apache License, Version 2.0 (the \"License\");"));
assertTrue(worker.matches(" // Licensed under the Apache License, Version 2.0 (the \"License\");"));
assertTrue(worker.matches(" /* Licensed under the Apache License, Version 2.0 (the \"License\");"));
assertTrue(worker.matches(" Licensed under the Apache License, Version 2.0 (the \"License\");"));
assertTrue(worker.matches(" ## Licensed under the Apache License, Version 2.0 (the \"License\");"));
assertTrue(worker.matches(" ## Licensed under the Apache License, Version 2.0 (the \"License\") ##);"));
assertFalse(worker.matches("'Behold, Telemachus! (nor fear the sight,)"));
}
@Test
public void match() throws Exception {
ApacheSoftwareLicense20 worker = new ApacheSoftwareLicense20();
final Document subject = new MockLocation("subject");
assertTrue(worker.match(subject, ApacheSoftwareLicense20.FIRST_LICENSE_LINE));
assertTrue(worker.match(subject, " Licensed under the Apache License, Version 2.0 (the \"License\");"));
assertTrue(worker.match(subject, "Licensed under the Apache License, Version 2.0 (the \"License\");"));
assertTrue(worker.match(subject, " * Licensed under the Apache License, Version 2.0 (the \"License\");"));
assertTrue(worker.match(subject, " // Licensed under the Apache License, Version 2.0 (the \"License\");"));
assertTrue(worker.match(subject, " /* Licensed under the Apache License, Version 2.0 (the \"License\");"));
assertTrue(worker.match(subject, " Licensed under the Apache License, Version 2.0 (the \"License\");"));
assertTrue(worker.match(subject, " ## Licensed under the Apache License, Version 2.0 (the \"License\");"));
assertTrue(worker.match(subject, " ## Licensed under the Apache License, Version 2.0 (the \"License\") ##);"));
assertFalse(worker.match(subject, "'Behold, Telemachus! (nor fear the sight,)"));
}
}