Code Monkey home page Code Monkey logo

Comments (5)

sarulabs avatar sarulabs commented on June 8, 2024 1

I don't unit test the parts of my code using di, and I'm not a big fan of mocking either. So it has never been a problem for me. But you are not the first mentioning this, and that led to a change in the behavior of the Builder.Add method. Now it allows to redefine a service.

Once the container has been built it is not possible to alter its definitions. So if you want to mock a service, it should be done with the Builder.Add and Builder.Set methods before calling Builder.Build.

It should be possible to organize your code to make it easy to add new definitions for in your tests. With something like this for example:

// app.go
type App struct {
    Definitions []di.Def
}

func (app *App) Run() {
    builder, _ := di.NewBuilder()
    builder.Add(app.Definitions...)
    ctn := builder.Build()
    // do something with the container
}

// services/defs.go
var Definitions = []di.Def{/* the real definitions */}

// main.go
func main() {
    app := App{Definitions: services.Definitions}
    app.Run()
}

// feature_test.go
func TestFeature(t *testing.T) {
    app := App{}
    app.Definitions = append(app.Definitions, services.Definitions...)
    app.Definitions = append(app.Definitions, di.Def{/* mocked definition */})
    // test app
}

from di.

sarulabs avatar sarulabs commented on June 8, 2024

Thank you for your support !

I don't have anything new planned for the library as it already does everything that I need. But if you need a new feature or if you see a bug, don't hesitate to create an issue.

from di.

trivigy avatar trivigy commented on June 8, 2024

@sarulabs definitely not hesitating. The only thing I ran into is that it is a little hard to unittest when mocking is needed. If you have encountered this than I would love some suggestions.

from di.

trivigy avatar trivigy commented on June 8, 2024

from di.

sarulabs avatar sarulabs commented on June 8, 2024

I updated the documentation:
92a15dc

from di.

Related Issues (15)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.