Giter VIP home page Giter VIP logo

Comments (2)

nitram509 avatar nitram509 commented on July 24, 2024

@blib thank you for providing this test case and good catch 👍

May Ia ask, in the test you wrote bpmnEngine.PublishEventForInstance(pi1.GetInstanceKey(), "globalMsgRef", nil) twice,
and the assertions as well. It seems redundant and could be shortenened, like below.
Do I oversee something?

PS: I will provide a fix soon.

func Test_IntermediateCatchEvent_multiple_instances_received_message_completes_the_instance(t *testing.T) {
	// setup
	bpmnEngine := New()

	// given
	process, _ := bpmnEngine.LoadFromFile("../../test-cases/message-intermediate-catch-event.bpmn")
	pi1, _ := bpmnEngine.CreateAndRunInstance(process.ProcessKey, map[string]interface{}{"key": "pi1"})
	pi2, _ := bpmnEngine.CreateAndRunInstance(process.ProcessKey, map[string]interface{}{"key": "pi2"})

	// when
	bpmnEngine.PublishEventForInstance(pi1.GetInstanceKey(), "globalMsgRef", nil)
	bpmnEngine.RunOrContinueInstance(pi1.GetInstanceKey())
	bpmnEngine.RunOrContinueInstance(pi2.GetInstanceKey())

	// then
	then.AssertThat(t, pi1.GetState(), is.EqualTo(Completed))
	then.AssertThat(t, pi2.GetState(), is.EqualTo(Active))

	// when
	bpmnEngine.PublishEventForInstance(pi2.GetInstanceKey(), "globalMsgRef", nil)
	bpmnEngine.RunOrContinueInstance(pi1.GetInstanceKey())
	bpmnEngine.RunOrContinueInstance(pi2.GetInstanceKey())

	// then
	then.AssertThat(t, pi1.GetState(), is.EqualTo(Completed))
	then.AssertThat(t, pi2.GetState(), is.EqualTo(Completed))
}

from lib-bpmn-engine.

nitram509 avatar nitram509 commented on July 24, 2024

fixed.
thank you for your contribution 🚀

from lib-bpmn-engine.

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.