factory

package module
v2.0.0-beta.6 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 26, 2023 License: MIT Imports: 8 Imported by: 0

README

Factory linter

CI Go Report Card MIT License Coverage Status

The linter checks that the Structures are created by the Factory, and not directly.

The checking helps to provide invariants without exclusion and helps avoid creating an invalid object.

Use

Installation

go install github.com/maranqz/go-factory-lint/cmd/go-factory-lint@latest
Options
  • --packageGlobs - list of glob packages, which can create structures without factories inside the glob package. By default, all structures from another package should be created by factories, tests.
    • onlyPackageGlobs - use a factory to initiate a structure for glob packages only, tests.

Example

BadGood
package main

import (
	"fmt"

	"bad"
)

func main() {
	// Use factory for bad.User
	u := &bad.User{
		ID: -1,
	}

	fmt.Println(u.ID) // -1
	fmt.Println(u.CreatedAt) // time.Time{}
}

package bad

import "time"

type User struct {
	ID        int64
	CreatedAt time.Time
}

var sequenceID = int64(0)

func NextID() int64 {
	sequenceID++

	return sequenceID
}


package main

import (
	"fmt"

	"good"
)

func main() {
	u := good.NewUser()
	
	fmt.Println(u.ID)        // auto increment
	fmt.Println(u.CreatedAt) // time.Now()
}

package user

import "time"

type User struct {
	ID        int64
	CreatedAt time.Time
}

func NewUser() *User {
	return &User{
		ID: nextID(),
		CreatedAt: time.Now(),
	}
}

var sequenceID = int64(0)

func nextID() int64 {
	sequenceID++

	return sequenceID
}

False Negative

Linter doesn't catch some cases.

  1. Buffered channel. You can initialize struct in line v, ok := <-bufCh example.
  2. Local initialization, example.
  3. Named return. If you want to block that case, you can use nonamedreturns linter, example.
  4. var declaration, var initilized nested.Struct gives structure without factory, example.

TODO

Possible Features
  1. Catch nested struct in the same package, example.
    return Struct{
        Other: OtherStruct{}, // want `Use factory for nested.Struct`
    }
    
  2. Resolve false negative issue with var declaration.
Features that are difficult to implement and unplanned
  1. Type assertion, type declaration and type underlying, tests.

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewAnalyzer

func NewAnalyzer() *analysis.Analyzer

Types

This section is empty.

Directories

Path Synopsis
cmd

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL