pedroMMM/goss

View on GitHub
resource/user.go

Summary

Maintainability
A
0 mins
Test Coverage
package resource

import (
    "fmt"

    "github.com/aelsabbahy/goss/system"
    "github.com/aelsabbahy/goss/util"
)

type User struct {
    Title    string  `json:"title,omitempty" yaml:"title,omitempty"`
    Meta     meta    `json:"meta,omitempty" yaml:"meta,omitempty"`
    Username string  `json:"-" yaml:"-"`
    Exists   matcher `json:"exists" yaml:"exists"`
    UID      matcher `json:"uid,omitempty" yaml:"uid,omitempty"`
    GID      matcher `json:"gid,omitempty" yaml:"gid,omitempty"`
    Groups   matcher `json:"groups,omitempty" yaml:"groups,omitempty"`
    Home     matcher `json:"home,omitempty" yaml:"home,omitempty"`
    Shell    matcher `json:"shell,omitempty" yaml:"shell,omitempty"`
    Skip     bool    `json:"skip,omitempty" yaml:"skip,omitempty"`
}

func (u *User) ID() string      { return u.Username }
func (u *User) SetID(id string) { u.Username = id }

func (u *User) GetTitle() string { return u.Title }
func (u *User) GetMeta() meta    { return u.Meta }

func (u *User) Validate(sys *system.System) []TestResult {
    skip := false
    sysuser := sys.NewUser(u.Username, sys, util.Config{})

    if u.Skip {
        skip = true
    }

    var results []TestResult
    results = append(results, ValidateValue(u, "exists", u.Exists, sysuser.Exists, skip))
    if shouldSkip(results) {
        skip = true
    }
    if u.UID != nil {
        uUID := deprecateAtoI(u.UID, fmt.Sprintf("%s: user.uid", u.Username))
        results = append(results, ValidateValue(u, "uid", uUID, sysuser.UID, skip))
    }
    if u.GID != nil {
        uGID := deprecateAtoI(u.GID, fmt.Sprintf("%s: user.gid", u.Username))
        results = append(results, ValidateValue(u, "gid", uGID, sysuser.GID, skip))
    }
    if u.Home != nil {
        results = append(results, ValidateValue(u, "home", u.Home, sysuser.Home, skip))
    }
    if u.Groups != nil {
        results = append(results, ValidateValue(u, "groups", u.Groups, sysuser.Groups, skip))
    }
    if u.Shell != nil {
        results = append(results, ValidateValue(u, "shell", u.Shell, sysuser.Shell, skip))
    }
    return results
}

func NewUser(sysUser system.User, config util.Config) (*User, error) {
    username := sysUser.Username()
    exists, _ := sysUser.Exists()
    u := &User{
        Username: username,
        Exists:   exists,
    }
    if !contains(config.IgnoreList, "uid") {
        if uid, err := sysUser.UID(); err == nil {
            u.UID = uid
        }
    }
    if !contains(config.IgnoreList, "gid") {
        if gid, err := sysUser.GID(); err == nil {
            u.GID = gid
        }
    }
    if !contains(config.IgnoreList, "groups") {
        if groups, err := sysUser.Groups(); err == nil {
            u.Groups = groups
        }
    }
    if !contains(config.IgnoreList, "home") {
        if home, err := sysUser.Home(); err == nil {
            u.Home = home
        }
    }
    if !contains(config.IgnoreList, "shell") {
        if shell, err := sysUser.Shell(); err == nil {
            u.Shell = shell
        }
    }
    return u, nil
}