You've already forked golang-saas-starter-kit
mirror of
https://github.com/raseels-repos/golang-saas-starter-kit.git
synced 2025-06-23 00:37:48 +02:00
completed unittests for users package
This commit is contained in:
@ -21,7 +21,7 @@ type User struct {
|
||||
PasswordHash []byte `db:"password_hash" json:"-"`
|
||||
PasswordReset sql.NullString `db:"password_reset" json:"-"`
|
||||
|
||||
Timezone string `db:"timezone" json:"timezone"`
|
||||
Timezone string `db:"timezone" json:"timezone"`
|
||||
|
||||
CreatedAt time.Time `db:"created_at" json:"created_at"`
|
||||
UpdatedAt time.Time `db:"updated_at" json:"updated_at"`
|
||||
@ -30,11 +30,11 @@ type User struct {
|
||||
|
||||
// CreateUserRequest contains information needed to create a new User.
|
||||
type CreateUserRequest struct {
|
||||
Name string `json:"name" validate:"required"`
|
||||
Email string `json:"email" validate:"required,email,unique"`
|
||||
Password string `json:"password" validate:"required"`
|
||||
PasswordConfirm string `json:"password_confirm" validate:"eqfield=Password"`
|
||||
Timezone *string `json:"timezone" validate:"omitempty"`
|
||||
Name string `json:"name" validate:"required"`
|
||||
Email string `json:"email" validate:"required,email,unique"`
|
||||
Password string `json:"password" validate:"required"`
|
||||
PasswordConfirm string `json:"password_confirm" validate:"eqfield=Password"`
|
||||
Timezone *string `json:"timezone" validate:"omitempty"`
|
||||
}
|
||||
|
||||
// UpdateUserRequest defines what information may be provided to modify an existing
|
||||
@ -44,20 +44,21 @@ type CreateUserRequest struct {
|
||||
// we do not want to use pointers to basic types but we make exceptions around
|
||||
// marshalling/unmarshalling.
|
||||
type UpdateUserRequest struct {
|
||||
ID string `validate:"required,uuid"`
|
||||
Name *string `json:"name" validate:"omitempty"`
|
||||
Email *string `json:"email" validate:"omitempty,email,unique"`
|
||||
Timezone *string `json:"timezone" validate:"omitempty"`
|
||||
ID string `validate:"required,uuid"`
|
||||
Name *string `json:"name" validate:"omitempty"`
|
||||
Email *string `json:"email" validate:"omitempty,email,unique"`
|
||||
Timezone *string `json:"timezone" validate:"omitempty"`
|
||||
}
|
||||
|
||||
// UpdatePassword defines what information may be provided to update user password.
|
||||
// UpdatePassword defines what information is required to update a user password.
|
||||
type UpdatePasswordRequest struct {
|
||||
ID string `validate:"required,uuid"`
|
||||
Password string `json:"password" validate:"required"`
|
||||
PasswordConfirm string `json:"password_confirm" validate:"omitempty,eqfield=Password"`
|
||||
}
|
||||
|
||||
// UserFindRequest defines the possible options for search for users
|
||||
// UserFindRequest defines the possible options to search for users. By default
|
||||
// archived users will be excluded from response.
|
||||
type UserFindRequest struct {
|
||||
Where *string
|
||||
Args []interface{}
|
||||
@ -67,53 +68,60 @@ type UserFindRequest struct {
|
||||
IncludedArchived bool
|
||||
}
|
||||
|
||||
// UserAccount defines the one to many relationship of an user to an account.
|
||||
// Each association of an user to an account has a set of roles defined for the user
|
||||
// that will be applied when accessing the account.
|
||||
// UserAccount defines the one to many relationship of an user to an account. This
|
||||
// will enable a single user access to multiple accounts without having duplicate
|
||||
// users. Each association of a user to an account has a set of roles and a status
|
||||
// defined for the user. The roles will be applied to enforce ACLs across the
|
||||
// application. The status will allow users to be managed on by account with users
|
||||
// being global to the application.
|
||||
type UserAccount struct {
|
||||
ID string `db:"id" json:"id"`
|
||||
UserID string `db:"user_id" json:"user_id"`
|
||||
AccountID string `db:"account_id" json:"account_id"`
|
||||
Roles UserAccountRoles `db:"roles" json:"roles"`
|
||||
Status UserAccountStatus `db:"status" json:"status"`
|
||||
CreatedAt time.Time `db:"created_at" json:"created_at"`
|
||||
UpdatedAt time.Time `db:"updated_at" json:"updated_at"`
|
||||
ArchivedAt pq.NullTime `db:"archived_at" json:"archived_at"`
|
||||
ID string `db:"id" json:"id"`
|
||||
UserID string `db:"user_id" json:"user_id"`
|
||||
AccountID string `db:"account_id" json:"account_id"`
|
||||
Roles UserAccountRoles `db:"roles" json:"roles"`
|
||||
Status UserAccountStatus `db:"status" json:"status"`
|
||||
CreatedAt time.Time `db:"created_at" json:"created_at"`
|
||||
UpdatedAt time.Time `db:"updated_at" json:"updated_at"`
|
||||
ArchivedAt pq.NullTime `db:"archived_at" json:"archived_at"`
|
||||
}
|
||||
|
||||
// AddAccountRequest defines the information needed to add a new account to a user.
|
||||
// AddAccountRequest defines the information is needed to associate a user to an
|
||||
// account. Users are global to the application and each users access can be managed
|
||||
// on an account level. If a current entry exists in the database but is archived,
|
||||
// it will be un-archived.
|
||||
type AddAccountRequest struct {
|
||||
UserID string `validate:"required,uuid"`
|
||||
AccountID string `validate:"required,uuid"`
|
||||
Roles UserAccountRoles `json:"roles" validate:"required,dive,oneof=admin user"`
|
||||
Status *UserAccountStatus `json:"status" validate:"omitempty,oneof=active disabled"`
|
||||
UserID string `validate:"required,uuid"`
|
||||
AccountID string `validate:"required,uuid"`
|
||||
Roles UserAccountRoles `json:"roles" validate:"required,dive,oneof=admin user"`
|
||||
Status *UserAccountStatus `json:"status" validate:"omitempty,oneof=active invited disabled"`
|
||||
}
|
||||
|
||||
// UpdateAccountRequest defines the information needed to update the roles for
|
||||
// an existing user account.
|
||||
// UpdateAccountRequest defines the information needed to update the roles or the
|
||||
// status for an existing user account.
|
||||
type UpdateAccountRequest struct {
|
||||
UserID string `validate:"required,uuid"`
|
||||
AccountID string `validate:"required,uuid"`
|
||||
Roles *UserAccountRoles `json:"roles" validate:"required,dive,oneof=admin user"`
|
||||
Status *UserAccountStatus `json:"status" validate:"omitempty,oneof=active disabled"`
|
||||
unArchive bool
|
||||
UserID string `validate:"required,uuid"`
|
||||
AccountID string `validate:"required,uuid"`
|
||||
Roles *UserAccountRoles `json:"roles" validate:"required,dive,oneof=admin user"`
|
||||
Status *UserAccountStatus `json:"status" validate:"omitempty,oneof=active invited disabled"`
|
||||
unArchive bool `json:"-"` // Internal use only.
|
||||
}
|
||||
|
||||
// RemoveAccountRequest defines the information needed to remove an existing
|
||||
// account for a user. This will archive (soft-delete) the existing database entry.
|
||||
// RemoveAccountRequest defines the information needed to remove an existing account
|
||||
// for a user. This will archive (soft-delete) the existing database entry.
|
||||
type RemoveAccountRequest struct {
|
||||
UserID string `validate:"required,uuid"`
|
||||
AccountID string `validate:"required,uuid"`
|
||||
}
|
||||
|
||||
// DeleteAccountRequest defines the information needed to delete an existing
|
||||
// account for a user. This will hard delete the existing database entry.
|
||||
// DeleteAccountRequest defines the information needed to delete an existing account
|
||||
// for a user. This will hard delete the existing database entry.
|
||||
type DeleteAccountRequest struct {
|
||||
UserID string `validate:"required,uuid"`
|
||||
AccountID string `validate:"required,uuid"`
|
||||
}
|
||||
|
||||
// UserAccountFindRequest defines the possible options for search for users accounts
|
||||
// UserAccountFindRequest defines the possible options to search for users accounts.
|
||||
// By default archived user accounts will be excluded from response.
|
||||
type UserAccountFindRequest struct {
|
||||
Where *string
|
||||
Args []interface{}
|
||||
@ -123,18 +131,25 @@ type UserAccountFindRequest struct {
|
||||
IncludedArchived bool
|
||||
}
|
||||
|
||||
// UserAccountStatus represents the status of a user.
|
||||
// UserAccountStatus represents the status of a user for an account.
|
||||
type UserAccountStatus string
|
||||
|
||||
// UserAccountStatus values
|
||||
// UserAccountStatus values define the status field of a user account.
|
||||
const (
|
||||
UserAccountStatus_Active UserAccountStatus = "active"
|
||||
// UserAccountStatus_Active defines the state when a user can access an account.
|
||||
UserAccountStatus_Active UserAccountStatus = "active"
|
||||
// UserAccountStatus_Invited defined the state when a user has been invited to an
|
||||
// account.
|
||||
UserAccountStatus_Invited UserAccountStatus = "invited"
|
||||
// UserAccountStatus_Disabled defines the state when a user has been disabled from
|
||||
// accessing an account.
|
||||
UserAccountStatus_Disabled UserAccountStatus = "disabled"
|
||||
)
|
||||
|
||||
// UserAccountStatus_Values provides list of valid UserAccountStatus values
|
||||
// UserAccountStatus_Values provides list of valid UserAccountStatus values.
|
||||
var UserAccountStatus_Values = []UserAccountStatus{
|
||||
UserAccountStatus_Active,
|
||||
UserAccountStatus_Invited,
|
||||
UserAccountStatus_Disabled,
|
||||
}
|
||||
|
||||
@ -152,7 +167,7 @@ func (s *UserAccountStatus) Scan(value interface{}) error {
|
||||
func (s UserAccountStatus) Value() (driver.Value, error) {
|
||||
v := validator.New()
|
||||
|
||||
errs := v.Var(s, "required,oneof=active disabled")
|
||||
errs := v.Var(s, "required,oneof=active invited disabled")
|
||||
if errs != nil {
|
||||
return nil, errs
|
||||
}
|
||||
@ -168,13 +183,19 @@ func (s UserAccountStatus) String() string {
|
||||
// UserAccountRole represents the role of a user for an account.
|
||||
type UserAccountRole string
|
||||
|
||||
// UserAccountRole values
|
||||
// UserAccountRole values define the role field of a user account.
|
||||
const (
|
||||
// UserAccountRole_Admin defines the state of a user when they have admin
|
||||
// privileges for accessing an account. This role provides a user with full
|
||||
// access to an account.
|
||||
UserAccountRole_Admin UserAccountRole = auth.RoleAdmin
|
||||
UserAccountRole_User UserAccountRole = auth.RoleUser
|
||||
// UserAccountRole_User defines the state of a user when they have basic
|
||||
// privileges for accessing an account. This role provies a user with the most
|
||||
// limited access to an account.
|
||||
UserAccountRole_User UserAccountRole = auth.RoleUser
|
||||
)
|
||||
|
||||
// UserAccountRole_Values provides list of valid UserAccountRole values
|
||||
// UserAccountRole_Values provides list of valid UserAccountRole values.
|
||||
var UserAccountRole_Values = []UserAccountRole{
|
||||
UserAccountRole_Admin,
|
||||
UserAccountRole_User,
|
||||
|
Reference in New Issue
Block a user