With the recent merging of embedded package imports and the entry CLI package, it is now possible for users to build in mcl code into a single binary. This additional permission makes it explicitly clear that this is permitted to make it easier for those users. The condition is phrased so that the terms can be "patched" by the original author if it's necessary for the project. For example, if the name of the language (mcl) changes, has a differently named new version, someone finds a phrasing improvement or a legal loophole, or for some other reasonable circumstance. Now go write some beautiful embedded tools!
156 lines
6.6 KiB
Go
156 lines
6.6 KiB
Go
// Mgmt
|
|
// Copyright (C) 2013-2024+ James Shubin and the project contributors
|
|
// Written by James Shubin <james@shubin.ca> and the project contributors
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU 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 General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
//
|
|
// Additional permission under GNU GPL version 3 section 7
|
|
//
|
|
// If you modify this program, or any covered work, by linking or combining it
|
|
// with embedded mcl code and modules (and that the embedded mcl code and
|
|
// modules which link with this program, contain a copy of their source code in
|
|
// the authoritative form) containing parts covered by the terms of any other
|
|
// license, the licensors of this program grant you additional permission to
|
|
// convey the resulting work. Furthermore, the licensors of this program grant
|
|
// the original author, James Shubin, additional permission to update this
|
|
// additional permission if he deems it necessary to achieve the goals of this
|
|
// additional permission.
|
|
|
|
//go:build !root
|
|
|
|
package util
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestSymbolicMode(t *testing.T) {
|
|
def := os.FileMode(0644) | os.ModeSetgid
|
|
symModeTests := []struct {
|
|
name string
|
|
input []string
|
|
expect os.FileMode
|
|
allowAssign bool
|
|
err error
|
|
}{
|
|
// Test single mode inputs.
|
|
{"assign", []string{"a=rwx"}, 0777, false, nil},
|
|
{"assign", []string{"ug=rwx"}, 0774, false, nil},
|
|
{"assign", []string{"ug=srwx"}, 0774 | os.ModeSetgid | os.ModeSetuid, false, nil},
|
|
{"assign", []string{"ug=trwx"}, 0774 | os.ModeSticky, false, nil},
|
|
{"assign", []string{"o=rx"}, 0645 | os.ModeSetgid, false, nil},
|
|
{"assign", []string{"ug=srwx"}, 0774 | os.ModeSetgid | os.ModeSetuid, false, nil},
|
|
{"addition", []string{"o+rwx"}, 0647 | os.ModeSetgid, true, nil},
|
|
{"addition", []string{"u+x"}, 0744 | os.ModeSetgid, true, nil},
|
|
{"addition", []string{"u+x"}, 0744 | os.ModeSetgid, true, nil},
|
|
{"addition", []string{"u+s"}, 0644 | os.ModeSetgid | os.ModeSetuid, true, nil},
|
|
{"addition", []string{"u+t"}, 0644 | os.ModeSetgid | os.ModeSticky, true, nil},
|
|
{"subtraction", []string{"o-rwx"}, 0640 | os.ModeSetgid, true, nil},
|
|
{"subtraction", []string{"u-w"}, 0444 | os.ModeSetgid, true, nil},
|
|
{"subtraction", []string{"g-s"}, 0644, true, nil},
|
|
{"subtraction", []string{"u-t"}, 0644 | os.ModeSetgid, true, nil},
|
|
|
|
// Test multiple mode inputs.
|
|
{"mixed", []string{"u=rwx", "g+w"}, 0764 | os.ModeSetgid, true, nil},
|
|
{"mixed", []string{"u+rwx", "g=w"}, 0724, true, nil},
|
|
|
|
// Test that a ModeError is returned. Value is not checked so
|
|
// the empty string works.
|
|
{"invalid separator", []string{"ug_rwx"}, os.FileMode(0), true, fmt.Errorf("ug_rwx is not a valid a symbolic mode")},
|
|
{"invalid who", []string{"xg=rwx"}, os.FileMode(0), true, fmt.Errorf("unexpected character assignment in xg=rwx")},
|
|
{"invalid what", []string{"g=rwy"}, os.FileMode(0), true, fmt.Errorf("unexpected character assignment in g=rwy")},
|
|
{"double assignment", []string{"a=rwx", "u=r"}, os.FileMode(0), true, fmt.Errorf("subject was repeated: each subject (u,g,o) is only accepted once")},
|
|
|
|
// Test allowAssign bool.
|
|
{"only assign", []string{"u+x", "g=rw"}, os.FileMode(0), false, fmt.Errorf("u+x is not a valid a symbolic mode")},
|
|
{"not only assign", []string{"u+x", "g=rw"}, os.FileMode(0764), true, nil},
|
|
}
|
|
|
|
for _, ts := range symModeTests {
|
|
test := ts
|
|
t.Run(test.name+" "+strings.Join(test.input, ","), func(t *testing.T) {
|
|
got, err := ParseSymbolicModes(test.input, def, test.allowAssign)
|
|
if test.err != nil {
|
|
if err == nil {
|
|
t.Errorf("input: %s, expected error: %#v, but got nil", def, test.err)
|
|
return
|
|
} else if err.Error() != test.err.Error() {
|
|
t.Errorf("input: %s, expected error: %q, got: %q", def, test.err, err)
|
|
return
|
|
}
|
|
} else if test.err == nil && err != nil {
|
|
t.Errorf("input: %s, did not expect error but got: %#v", def, err)
|
|
return
|
|
}
|
|
|
|
// Verify we get the expected value (including zero on error).
|
|
if test.expect != got {
|
|
t.Errorf("input: %s, expected: %v, got: %v", def, test.expect, got)
|
|
return
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestSymbolicMode1(t *testing.T) {
|
|
def := os.FileMode(0)
|
|
symModeTests := []struct {
|
|
name string
|
|
input []string
|
|
expect os.FileMode
|
|
allowAssign bool
|
|
err error
|
|
}{
|
|
{"assign", []string{"u=r"}, 0400, false, nil},
|
|
{"assign", []string{"g=rw"}, 0060, false, nil},
|
|
{"assign", []string{"o=rwx"}, 0007, false, nil},
|
|
{"assign", []string{"u=r"}, 0400, false, nil},
|
|
{"multiple assignment", []string{"u=r", "g=w", "o=x"}, 0421, false, nil},
|
|
{"multiple assignment", []string{"ug=rw", "o=rx"}, 0665, false, nil},
|
|
{"double assignment", []string{"ug=r", "go=r", "ua=x"}, os.FileMode(0), true, fmt.Errorf("subject was repeated: only define each subject (u,g,o) once")},
|
|
{"double assignment", []string{"uu=rw", "ug=rw", "gg=xr"}, os.FileMode(0), true, fmt.Errorf("subject was repeated: only define each subject (u,g,o) once")},
|
|
{"double assignment", []string{"ugo=r", "g=w", "o=w"}, os.FileMode(0), true, fmt.Errorf("subject was repeated: only define each subject (u,g,o) once")},
|
|
{"double assignment", []string{"g=r", "ugo=x", "a=w"}, os.FileMode(0), true, fmt.Errorf("subject was repeated: only define each subject (u,g,o) once")},
|
|
{"invalid what", []string{"o=args"}, os.FileMode(0), true, fmt.Errorf("unexpected character assignment in o=args")},
|
|
{"invalid what", []string{"o=args"}, os.FileMode(0), true, fmt.Errorf("unexpected character assignment in o=args")},
|
|
}
|
|
for _, ts := range symModeTests {
|
|
test := ts
|
|
t.Run(test.name+" "+strings.Join(test.input, ","), func(t *testing.T) {
|
|
got, err := ParseSymbolicModes(test.input, def, test.allowAssign)
|
|
if test.err != nil {
|
|
if err == nil {
|
|
t.Errorf("input: %s, expected error: %#v, but got nil", def, test.err)
|
|
return
|
|
} else if err.Error() != test.err.Error() {
|
|
t.Errorf("input: %s, expected error: %q, got: %q", def, test.err, err)
|
|
return
|
|
}
|
|
} else if test.err == nil && err != nil {
|
|
t.Errorf("input: %s, did not expect error but got: %#v", def, err)
|
|
return
|
|
}
|
|
|
|
if test.expect != got {
|
|
t.Errorf("input: %s, expected: %v, got: %v", def, test.expect, got)
|
|
return
|
|
}
|
|
})
|
|
}
|
|
|
|
}
|