View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one   *
3    * or more contributor license agreements.  See the NOTICE file *
4    * distributed with this work for additional information        *
5    * regarding copyright ownership.  The ASF licenses this file   *
6    * to you under the Apache License, Version 2.0 (the            *
7    * "License"); you may not use this file except in compliance   *
8    * with the License.  You may obtain a copy of the License at   *
9    *                                                              *
10   *   http://www.apache.org/licenses/LICENSE-2.0                 *
11   *                                                              *
12   * Unless required by applicable law or agreed to in writing,   *
13   * software distributed under the License is distributed on an  *
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY       *
15   * KIND, either express or implied.  See the License for the    *
16   * specific language governing permissions and limitations      *
17   * under the License.                                           *
18   */
19  package org.apache.rat.analysis.license;
20  
21  import java.util.stream.Stream;
22  
23  import org.junit.jupiter.params.provider.Arguments;
24  
25  /**
26   * Tests GPL license occurrences within comments and other characters. Works for
27   * GPL1 to GPL3.
28   */
29  
30  public class GPLLicenseTest extends AbstractLicenseTest {
31  
32      private static Arguments GPL1 = Arguments.of( "GPL1", "GPL1", "GNU General Public License, version 1", null, 
33              new String[][] {
34              { "fulltext", "This program is free software; you can redistribute it and/or modify\n "
35                      + "it under the terms of the GNU General Public License as published by\n "
36                      + "the Free Software Foundation; either version 1, or (at your option)\n " + "any later version." },
37              { "spdx-tab", "SPDX-License-Identifier:\tGPL-1.0-only" },
38              { "spdx-space", "SPDX-License-Identifier: GPL-1.0-only" }, } );
39  
40      private static Arguments GPL2 = Arguments.of( "GPL2", "GPL2", "GNU General Public License, version 2", null,
41              new String[][] {
42                      { "fulltext",
43                              "This program is free software; you can redistribute it and/or\n"
44                                      + "modify it under the terms of the GNU General Public License\n"
45                                      + "as published by the Free Software Foundation; either version 2\n"
46                                      + "of the License, or (at your option) any later version." },
47                      { "spdx-tab", "SPDX-License-Identifier:\tGPL-2.0-only" },
48                      { "spdx-space", "SPDX-License-Identifier: GPL-2.0-only" }, } );
49  
50      private static Arguments GPL3 = Arguments.of( "GPL3", "GPL3", "GNU General Public License, version 3", null,
51              new String[][] {
52                      { "fulltext",
53                              "This program is free software: you can redistribute it and/or modify\n"
54                                      + "    it under the terms of the GNU General Public License as published by\n"
55                                      + "    the Free Software Foundation, either version 3 of the License, or\n"
56                                      + "    (at your option) any later version." },
57                      { "spdx-tab", "SPDX-License-Identifier:\tGPL-3.0-only" },
58                      { "spdx-space", "SPDX-License-Identifier: GPL-3.0-only" }, } );
59  
60  
61      public static Stream<Arguments> parameterProvider() {
62          return Stream.of(GPL1, GPL2, GPL3);
63      }
64  }