File: test_licensecheck

package info (click to toggle)
devscripts 2.15.3%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 4,680 kB
  • ctags: 793
  • sloc: perl: 16,581; sh: 7,295; python: 950; makefile: 224; ansic: 28
file content (102 lines) | stat: -rwxr-xr-x 2,898 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#!/bin/sh

# Copyright (C) 2012, Benjamin Drung <bdrung@debian.org>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

if test "$1" = --installed; then
    COMMAND="licensecheck --no-conf"
    shift
else
    COMMAND="../scripts/licensecheck.pl --no-conf"
fi

WORKDIR="$(readlink -f "${0%/*}")"

. "${0%/*}/shunit2-helper-functions.sh"

license() {
    cd "$WORKDIR"
    runCommand "licensecheck/$1" "licensecheck/$1: $2" "" 0
}

license2() {
    cd "$WORKDIR"
    runCommand "$1 licensecheck/$2" "licensecheck/$2	$3" "" 0
}

testBeerware() {
    license "beerware.cpp" "Beerware"
}

testBSD() {
    license "bsd-3-clause.cpp" "BSD (3 clause)"
    license "bsd-3-clause-authorsany.c" "BSD (3 clause)"
}

testLGPL() {
    license "lgpl-2.1.c" "LGPL (v2.1)"
    license "lgpl-2.1.h" "LGPL (v2.1)"
    license "lgpl-2.s" "LGPL (v2)"
    license "lgpl-3+.h" "LGPL (v3 or later)"
    license "lgpl-variation.c" "LGPL (v3 or later)"
}

testGPL() {
    license "gpl-1" "GPL (v1 or later)"
    license "gpl-2" "GPL (v2)"
    license "gpl-2+" "GPL (v2 or later)"
    license "gpl-2+.scm" "GPL (v2 or later)"
    license "gpl-2-comma.sh" "GPL (v2)"
    license "gpl-2-incorrect-address" "GPL (v2) (with incorrect FSF address)"
    license "gpl-3.sh" "GPL (v3)"
    license "gpl-3+" "GPL (v3 or later)"
    license "gpl-3-only.c" "GPL (v3)"
    license "gpl-variation.c" "GPL (v3 or later)"
    license "gpl-3+.el" "GPL (v3 or later)"
}

testDual() {
    license "dual.c" "Public domain GPL (v3)"
}

testMPL() {
    license "mpl-1.1.sh" "MPL (v1.1)"
    license "mpl-2.0.sh" "MPL (v2.0)"
    license "mpl-2.0-comma.sh" "MPL (v2.0)"
}

testMachine() {
    license2 "-m" "beerware.cpp" "Beerware"
    license2 "--machine" "lgpl-2.1.h" "LGPL (v2.1)"
    license2 "-m --copyright" "gpl-2" "GPL (v2)	2012 Devscripts developers"
}

testFortranComments() {
    license "bsd.f" "BSD (2 clause)"
}

testCommentsDetection() {
    license "comments-detection.h" "GPL (v3 or later)"
    license "comments-detection.txt" "*No copyright* LGPL (v2.1 or later)"
}

testFalsePositives() {
    license2 "-m --copyright" "false-positives" "Public domain	2013 Devscripts developers"
}

testRegexpKiller() {
    license "regexp-killer.c" "UNKNOWN"
}

. shunit2