Giter Site home page Giter Site logo

Comments (4)

Gerark avatar Gerark commented on June 14, 2024

Hello, did you find any solution to this? I've a similar issue on visual studio 2013 but the crash happens on

        void *VirtualTableBase::getCookie(int index) {
            return _firstMethod[-2 - index];
        }

from fakeit.

tnovotny avatar tnovotny commented on June 14, 2024

For me this is working. I am using the November 30 Update 1 and the MS testing tool. Test passes both x32 and x64. Dont't think its relevant, but OS is 8.1 Professional 64 bit.

from fakeit.

alexey-malov avatar alexey-malov commented on June 14, 2024

I have checked with Visual Studio 2015 update 3.
It crashes if the destructor is not the very first method of the interfaces:

If I place SomeMethod after the destructor, everything is OK:

	struct SomeInterface
	{
		virtual ~SomeInterface() = default;
		virtual void SomeMethod(int someParam) = 0;
	};

	void mock_virtual_dtor_with_when() {
		int a = 0;
		Mock<SomeInterface> mock;
		When(Dtor(mock)).Return().Do([&](){a++; });
		SomeInterface * i = &(mock.get());
		delete i; // do nothing
		delete i; // a++
		ASSERT_EQUAL(1, a);
	}

However, if I put SomeMethod above the destructor, it crashes:

	struct SomeInterface
	{
		virtual void SomeMethod(int someParam) = 0;
		virtual ~SomeInterface() = default;
	};
	void mock_virtual_dtor_with_when() {
		int a = 0;
		Mock<SomeInterface> mock;
		When(Dtor(mock)).Return().Do([&](){a++; });
		SomeInterface * i = &(mock.get());
		delete i; // do nothing
		delete i; // a++
		ASSERT_EQUAL(1, a);
	}

Error message is:

Exception thrown: read access violation.

invocationHandler was nullptr.

If there is a handler for this exception, the program may be safely continued.

Stack track is:

>	all_tests.exe!fakeit::MethodProxyCreator<void>::methodProxy(unsigned int id) Line 45	C++
 	all_tests.exe!fakeit::MethodProxyCreator<void>::methodProxyX<0>() Line 51	C++
 	all_tests.exe!fakeit::VirtualTable<DtorMocking::SomeInterface>::dtor(int __formal) Line 219	C++
 	all_tests.exe!DtorMocking::mock_virtual_dtor_with_when() Line 54	C++
 	all_tests.exe!tpunit::TestFixture::__do_tests(tpunit::TestFixture::fixture * f) Line 500	C++
 	all_tests.exe!tpunit::TestFixture::__do_run() Line 360	C++
 	all_tests.exe!tpunit::Tests::Run() Line 550	C++
 	all_tests.exe!main() Line 31	C++

from fakeit.

FranckRJ avatar FranckRJ commented on June 14, 2024

Should be fixed by #312, it will be available in FakeIt 2.3.3 or 2.4.0 depending on which is the first to be released.

from fakeit.

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.