forked from ayende/rhino-mocks
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed a bug when using x.Stub on a class with a virtual automatic
property with an private setter.
- Loading branch information
Jean-Paul S. Boodhoo
committed
Sep 19, 2009
1 parent
8f8541f
commit f5445ca
Showing
143 changed files
with
43,693 additions
and
43,649 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using MbUnit.Framework; | ||
|
||
namespace Rhino.Mocks.Tests.FieldsProblem | ||
{ | ||
public class FieldProblem_JPBoodhoo | ||
{ | ||
public class VirtualClass | ||
{ | ||
public virtual DateTime virtual_property_public_read_private_write { get; private set; } | ||
public virtual string run_sheet_name { get; set; } | ||
} | ||
|
||
[TestFixture] | ||
public class when_setting_up_a_return_value_for_a_virtual_property_on_a_class_with_a_public_getter_and_private_setter | ||
{ | ||
VirtualClass target; | ||
|
||
[SetUp] | ||
public void setup() | ||
{ | ||
target = MockRepository.GenerateStub<VirtualClass>(); | ||
target.Stub(entry_model => entry_model.virtual_property_public_read_private_write).Return(DateTime.Now); | ||
} | ||
|
||
[Test] | ||
public void should_not_throw_the_exception_suggesting_to_assign_the_property_value_directly() | ||
{ | ||
target.virtual_property_public_read_private_write.Equals(DateTime.Now); | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,144 +1,144 @@ | ||
#region license | ||
// Copyright (c) 2005 - 2007 Ayende Rahien ([email protected]) | ||
// All rights reserved. | ||
// | ||
// Redistribution and use in source and binary forms, with or without modification, | ||
// are permitted provided that the following conditions are met: | ||
// | ||
// * Redistributions of source code must retain the above copyright notice, | ||
// this list of conditions and the following disclaimer. | ||
// * Redistributions in binary form must reproduce the above copyright notice, | ||
// this list of conditions and the following disclaimer in the documentation | ||
// and/or other materials provided with the distribution. | ||
// * Neither the name of Ayende Rahien nor the names of its | ||
// contributors may be used to endorse or promote products derived from this | ||
// software without specific prior written permission. | ||
// | ||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE | ||
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
// THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
#endregion | ||
|
||
|
||
using System; | ||
using System.Text; | ||
using System.Windows.Forms; | ||
using MbUnit.Framework; | ||
using Rhino.Mocks.Exceptions; | ||
|
||
namespace Rhino.Mocks.Tests | ||
{ | ||
[TestFixture] | ||
public class PartialMockTests | ||
{ | ||
MockRepository mocks; | ||
AbstractClass abs; | ||
|
||
[SetUp] | ||
public void SetUp() | ||
{ | ||
mocks = new MockRepository(); | ||
abs = (AbstractClass)mocks.PartialMock(typeof(AbstractClass)); | ||
} | ||
|
||
[Test] | ||
public void AutomaticallCallBaseMethodIfNoExpectationWasSet() | ||
{ | ||
mocks.ReplayAll(); | ||
Assert.AreEqual(1, abs.Increment()); | ||
Assert.AreEqual(6, abs.Add(5)); | ||
Assert.AreEqual(6, abs.Count); | ||
mocks.VerifyAll(); | ||
|
||
} | ||
|
||
[Test] | ||
public void CanMockVirtualMethods() | ||
{ | ||
Expect.Call(abs.Increment()).Return(5); | ||
Expect.Call(abs.Add(2)).Return(3); | ||
mocks.ReplayAll(); | ||
Assert.AreEqual(5, abs.Increment()); | ||
Assert.AreEqual(3, abs.Add(2)); | ||
Assert.AreEqual(0, abs.Count); | ||
mocks.VerifyAll(); | ||
} | ||
|
||
[Test] | ||
public void CanMockAbstractMethods() | ||
{ | ||
Expect.Call(abs.Decrement()).Return(5); | ||
mocks.ReplayAll(); | ||
Assert.AreEqual(5, abs.Decrement()); | ||
Assert.AreEqual(0, abs.Count); | ||
mocks.VerifyAll(); | ||
} | ||
|
||
[Test] | ||
[ExpectedException(typeof(InvalidOperationException), "Can't create a partial mock from an interface")] | ||
public void CantCreatePartialMockFromInterfaces() | ||
{ | ||
new MockRepository().PartialMock(typeof(IDemo)); | ||
} | ||
|
||
[Test] | ||
[ExpectedException(typeof(ExpectationViolationException), "AbstractClass.Decrement(); Expected #0, Actual #1.")] | ||
public void CallAnAbstractMethodWithoutSettingExpectation() | ||
{ | ||
mocks.ReplayAll(); | ||
abs.Decrement(); | ||
} | ||
|
||
[Test] | ||
public void CanMockWithCtorParams() | ||
{ | ||
WithParameters withParameters = mocks.PartialMock<WithParameters>(1); | ||
Expect.Call(withParameters.Int).Return(4); | ||
mocks.ReplayAll(); | ||
Assert.AreEqual(4, withParameters.Int); | ||
mocks.VerifyAll(); | ||
} | ||
} | ||
|
||
public abstract class AbstractClass | ||
{ | ||
public int Count = 0; | ||
|
||
public virtual int Increment() | ||
{ | ||
return ++Count; | ||
} | ||
|
||
public virtual int Add(int n) | ||
{ | ||
return Count += n; | ||
} | ||
|
||
public abstract int Decrement(); | ||
} | ||
|
||
public class WithParameters | ||
{ | ||
private int i; | ||
|
||
|
||
public WithParameters(int i) | ||
{ | ||
this.i = i; | ||
} | ||
|
||
|
||
public virtual int Int | ||
{ | ||
get { return i; } | ||
set { i = value; } | ||
} | ||
} | ||
} | ||
#region license | ||
// Copyright (c) 2005 - 2007 Ayende Rahien ([email protected]) | ||
// All rights reserved. | ||
// | ||
// Redistribution and use in source and binary forms, with or without modification, | ||
// are permitted provided that the following conditions are met: | ||
// | ||
// * Redistributions of source code must retain the above copyright notice, | ||
// this list of conditions and the following disclaimer. | ||
// * Redistributions in binary form must reproduce the above copyright notice, | ||
// this list of conditions and the following disclaimer in the documentation | ||
// and/or other materials provided with the distribution. | ||
// * Neither the name of Ayende Rahien nor the names of its | ||
// contributors may be used to endorse or promote products derived from this | ||
// software without specific prior written permission. | ||
// | ||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE | ||
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
// THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
#endregion | ||
|
||
|
||
using System; | ||
using System.Text; | ||
using System.Windows.Forms; | ||
using MbUnit.Framework; | ||
using Rhino.Mocks.Exceptions; | ||
|
||
namespace Rhino.Mocks.Tests | ||
{ | ||
[TestFixture] | ||
public class PartialMockTests | ||
{ | ||
MockRepository mocks; | ||
AbstractClass abs; | ||
|
||
[SetUp] | ||
public void SetUp() | ||
{ | ||
mocks = new MockRepository(); | ||
abs = (AbstractClass)mocks.PartialMock(typeof(AbstractClass)); | ||
} | ||
|
||
[Test] | ||
public void AutomaticallCallBaseMethodIfNoExpectationWasSet() | ||
{ | ||
mocks.ReplayAll(); | ||
Assert.AreEqual(1, abs.Increment()); | ||
Assert.AreEqual(6, abs.Add(5)); | ||
Assert.AreEqual(6, abs.Count); | ||
mocks.VerifyAll(); | ||
|
||
} | ||
|
||
[Test] | ||
public void CanMockVirtualMethods() | ||
{ | ||
Expect.Call(abs.Increment()).Return(5); | ||
Expect.Call(abs.Add(2)).Return(3); | ||
mocks.ReplayAll(); | ||
Assert.AreEqual(5, abs.Increment()); | ||
Assert.AreEqual(3, abs.Add(2)); | ||
Assert.AreEqual(0, abs.Count); | ||
mocks.VerifyAll(); | ||
} | ||
|
||
[Test] | ||
public void CanMockAbstractMethods() | ||
{ | ||
Expect.Call(abs.Decrement()).Return(5); | ||
mocks.ReplayAll(); | ||
Assert.AreEqual(5, abs.Decrement()); | ||
Assert.AreEqual(0, abs.Count); | ||
mocks.VerifyAll(); | ||
} | ||
|
||
[Test] | ||
[ExpectedException(typeof(InvalidOperationException), "Can't create a partial mock from an interface")] | ||
public void CantCreatePartialMockFromInterfaces() | ||
{ | ||
new MockRepository().PartialMock(typeof(IDemo)); | ||
} | ||
|
||
[Test] | ||
[ExpectedException(typeof(ExpectationViolationException), "AbstractClass.Decrement(); Expected #0, Actual #1.")] | ||
public void CallAnAbstractMethodWithoutSettingExpectation() | ||
{ | ||
mocks.ReplayAll(); | ||
abs.Decrement(); | ||
} | ||
|
||
[Test] | ||
public void CanMockWithCtorParams() | ||
{ | ||
WithParameters withParameters = mocks.PartialMock<WithParameters>(1); | ||
Expect.Call(withParameters.Int).Return(4); | ||
mocks.ReplayAll(); | ||
Assert.AreEqual(4, withParameters.Int); | ||
mocks.VerifyAll(); | ||
} | ||
} | ||
|
||
public abstract class AbstractClass | ||
{ | ||
public int Count = 0; | ||
|
||
public virtual int Increment() | ||
{ | ||
return ++Count; | ||
} | ||
|
||
public virtual int Add(int n) | ||
{ | ||
return Count += n; | ||
} | ||
|
||
public abstract int Decrement(); | ||
} | ||
|
||
public class WithParameters | ||
{ | ||
private int i; | ||
|
||
|
||
public WithParameters(int i) | ||
{ | ||
this.i = i; | ||
} | ||
|
||
|
||
public virtual int Int | ||
{ | ||
get { return i; } | ||
set { i = value; } | ||
} | ||
} | ||
} |
Oops, something went wrong.