Git Product home page Git Product logo

Comments (5)

BrynCooke avatar BrynCooke commented on July 20, 2024

Hi, can you post your test class so I can reproduce this easily?

from cdi-unit.

BrynCooke avatar BrynCooke commented on July 20, 2024

Just tried pasting the code from the user guide and it seems to work OK. I would be really interested to see exactly how this happens.

from cdi-unit.

mfritz avatar mfritz commented on July 20, 2024

sorry, this seems to be a bug in weld;
if i add a @singleton or @ApplicationScoped to the test class, no recursion and no StackOverflow occurs;
yet a warning in the log:
[main] WARN org.jboss.weld.Bean - WELD-000018 Executing producer field or method [field] @Mock @Produces TestStarship._engine on incomplete declaring bean Managed Bean [class TestStarship] with qualifiers [@Any @Default] due to circular injection

FYI: my TestCode:

class Starship { // We want to test this!
@Inject
Engine _engine;

void start() {
    _engine.start();
}

}

interface Engine {
void start();
}

class WarpDrive implements Engine {
public void start() {
Assert.fail("Should never be called");
}

}

@RunWith(CdiRunner.class)
@Singleton
public class TestStarship {

@Produces @Mock
Engine _engine;

@Inject
Starship _starship;

@Test
public void testStart() {
    _starship.start();
    // Verify that the mocks start method is called at least once.
    Mockito.verify(_engine, Mockito.atLeastOnce()).start();
}

}

from cdi-unit.

BrynCooke avatar BrynCooke commented on July 20, 2024

This is a bug in CDI unit. There is an extension that automatically places the test class in ApplicationScope, but if you are not developing a web app it never gets called.

Thanks for uncovering this.

from cdi-unit.

BrynCooke avatar BrynCooke commented on July 20, 2024

Fixed in 2.0.5

from cdi-unit.

Related Issues (20)

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.