How to use times method of org.easymock.internal.MocksControl class

Best Easymock code snippet using org.easymock.internal.MocksControl.times

Source:BeginAuthenticationResponseMessageHandlerTest.java Github

copy

Full Screen

1/*2 * BeginAuthenticationResponseMessageHandlerTest.java3 * Copyright 2008-2015 Gamegineer contributors and others.4 * All rights reserved.5 *6 * This program is free software: you can redistribute it and/or modify7 * it under the terms of the GNU General Public License as published by8 * the Free Software Foundation, either version 3 of the License, or9 * (at your option) any later version.10 *11 * This program is distributed in the hope that it will be useful,12 * but WITHOUT ANY WARRANTY; without even the implied warranty of13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the14 * GNU General Public License for more details.15 *16 * You should have received a copy of the GNU General Public License17 * along with this program. If not, see <http://www.gnu.org/licenses/>.18 *19 * Created on Apr 29, 2011 at 10:47:38 PM.20 */2122package org.gamegineer.table.internal.net.impl.node.server.handlers;2324import static org.junit.Assert.assertEquals;25import java.util.Optional;26import org.easymock.Capture;27import org.easymock.EasyMock;28import org.easymock.IMocksControl;29import org.eclipse.jdt.annotation.NonNull;30import org.eclipse.jdt.annotation.Nullable;31import org.gamegineer.common.core.security.SecureString;32import org.gamegineer.table.internal.net.impl.node.IMessageHandler;33import org.gamegineer.table.internal.net.impl.node.common.Authenticator;34import org.gamegineer.table.internal.net.impl.node.common.messages.BeginAuthenticationResponseMessage;35import org.gamegineer.table.internal.net.impl.node.common.messages.EndAuthenticationMessage;36import org.gamegineer.table.internal.net.impl.node.common.messages.ErrorMessage;37import org.gamegineer.table.internal.net.impl.node.server.IRemoteClientNodeController;38import org.gamegineer.table.internal.net.impl.node.server.IServerNode;39import org.gamegineer.table.internal.net.impl.transport.FakeMessage;40import org.gamegineer.table.internal.net.impl.transport.IMessage;41import org.gamegineer.table.net.TableNetworkError;42import org.junit.Before;43import org.junit.Test;4445/**46 * A fixture for testing the {@link BeginAuthenticationResponseMessageHandler}47 * class.48 */49public final class BeginAuthenticationResponseMessageHandlerTest50{51 // ======================================================================52 // Fields53 // ======================================================================5455 /** The mocks control for use in the fixture. */56 private Optional<IMocksControl> mocksControl_;575859 // ======================================================================60 // Constructors61 // ======================================================================6263 /**64 * Initializes a new instance of the65 * {@code BeginAuthenticationResponseMessageHandlerTest} class.66 */67 public BeginAuthenticationResponseMessageHandlerTest()68 {69 mocksControl_ = Optional.empty();70 }717273 // ======================================================================74 // Methods75 // ======================================================================7677 /**78 * Gets the message handler under test in the fixture.79 * 80 * @return The message handler under test in the fixture.81 */82 private IMessageHandler getMessageHandler()83 {84 return BeginAuthenticationResponseMessageHandler.INSTANCE;85 }8687 /**88 * Gets the fixture mocks control.89 * 90 * @return The fixture mocks control.91 */92 private IMocksControl getMocksControl()93 {94 return mocksControl_.get();95 }9697 /**98 * Sets up the test fixture.99 * 100 * @throws java.lang.Exception101 * If an error occurs.102 */103 @Before104 public void setUp()105 throws Exception106 {107 mocksControl_ = Optional.of( EasyMock.createControl() );108 }109110 /**111 * Ensures the112 * {@link BeginAuthenticationResponseMessageHandler#handleMessage} method113 * correctly handles a begin authentication response message.114 * 115 * @throws java.lang.Exception116 * If an error occurs.117 */118 @SuppressWarnings( "boxing" )119 @Test120 public void testHandleMessage_BeginAuthenticationResponseMessage()121 throws Exception122 {123 final IMocksControl mocksControl = getMocksControl();124 final String playerName = "playerName"; //$NON-NLS-1$125 final SecureString password = new SecureString( "password".toCharArray() ); //$NON-NLS-1$126 final byte[] challenge = new byte[] {127 1, 2, 3, 4128 };129 final byte[] salt = new byte[] {130 5, 6, 7, 8131 };132 final Authenticator authenticator = new Authenticator();133 final byte[] response = authenticator.createResponse( challenge, password, salt );134 final IServerNode localNode = mocksControl.createMock( IServerNode.class );135 EasyMock.expect( localNode.getPassword() ).andReturn( new SecureString( password ) );136 final IRemoteClientNodeController remoteNodeController = mocksControl.createMock( IRemoteClientNodeController.class );137 EasyMock.expect( remoteNodeController.getLocalNode() ).andReturn( localNode ).anyTimes();138 EasyMock.expect( remoteNodeController.getChallenge() ).andReturn( challenge ).anyTimes();139 EasyMock.expect( remoteNodeController.getSalt() ).andReturn( salt ).anyTimes();140 EasyMock.expect( localNode.isPlayerConnected( playerName ) ).andReturn( false );141 final Capture<IMessage> messageCapture = new Capture<>();142 remoteNodeController.sendMessage( EasyMock.capture( messageCapture ), EasyMock.<@Nullable IMessageHandler>isNull() );143 remoteNodeController.bind( playerName );144 mocksControl.replay();145146 final BeginAuthenticationResponseMessage message = new BeginAuthenticationResponseMessage();147 message.setPlayerName( playerName );148 message.setResponse( response );149 getMessageHandler().handleMessage( remoteNodeController, message );150151 mocksControl.verify();152 assertEquals( EndAuthenticationMessage.class, messageCapture.getValue().getClass() );153 assertEquals( message.getId(), messageCapture.getValue().getCorrelationId() );154 }155156 /**157 * Ensures the158 * {@link BeginAuthenticationResponseMessageHandler#handleMessage} method159 * correctly handles a begin authentication response message in the case160 * where authentication fails.161 * 162 * @throws java.lang.Exception163 * If an error occurs.164 */165 @Test166 public void testHandleMessage_BeginAuthenticationResponseMessage_AuthenticationFailed()167 throws Exception168 {169 final IMocksControl mocksControl = getMocksControl();170 final String playerName = "playerName"; //$NON-NLS-1$171 final SecureString password = new SecureString( "password".toCharArray() ); //$NON-NLS-1$172 final byte[] challenge = new byte[] {173 1, 2, 3, 4174 };175 final byte[] salt = new byte[] {176 5, 6, 7, 8177 };178 final byte[] response = new byte[] {179 9, 10, 11, 12180 };181 final IServerNode localNode = mocksControl.createMock( IServerNode.class );182 EasyMock.expect( localNode.getPassword() ).andReturn( new SecureString( password ) );183 final IRemoteClientNodeController remoteNodeController = mocksControl.createMock( IRemoteClientNodeController.class );184 EasyMock.expect( remoteNodeController.getLocalNode() ).andReturn( localNode ).anyTimes();185 EasyMock.expect( remoteNodeController.getChallenge() ).andReturn( challenge ).anyTimes();186 EasyMock.expect( remoteNodeController.getSalt() ).andReturn( salt ).anyTimes();187 final Capture<IMessage> messageCapture = new Capture<>();188 remoteNodeController.sendMessage( EasyMock.capture( messageCapture ), EasyMock.<@Nullable IMessageHandler>isNull() );189 remoteNodeController.close( TableNetworkError.AUTHENTICATION_FAILED );190 mocksControl.replay();191192 final BeginAuthenticationResponseMessage message = new BeginAuthenticationResponseMessage();193 message.setPlayerName( playerName );194 message.setResponse( response );195 getMessageHandler().handleMessage( remoteNodeController, message );196197 mocksControl.verify();198 assertEquals( ErrorMessage.class, messageCapture.getValue().getClass() );199 assertEquals( message.getId(), messageCapture.getValue().getCorrelationId() );200 assertEquals( TableNetworkError.AUTHENTICATION_FAILED, ((ErrorMessage)messageCapture.getValue()).getError() );201 }202203 /**204 * Ensures the205 * {@link BeginAuthenticationResponseMessageHandler#handleMessage} method206 * correctly handles a begin authentication response message in the case207 * where the player name is already registered.208 * 209 * @throws java.lang.Exception210 * If an error occurs.211 */212 @SuppressWarnings( "boxing" )213 @Test214 public void testHandleMessage_BeginAuthenticationResponseMessage_DuplicatePlayerName()215 throws Exception216 {217 final IMocksControl mocksControl = getMocksControl();218 final String playerName = "playerName"; //$NON-NLS-1$219 final SecureString password = new SecureString( "password".toCharArray() ); //$NON-NLS-1$220 final byte[] challenge = new byte[] {221 1, 2, 3, 4222 };223 final byte[] salt = new byte[] {224 5, 6, 7, 8225 };226 final Authenticator authenticator = new Authenticator();227 final byte[] response = authenticator.createResponse( challenge, password, salt );228 final IServerNode localNode = mocksControl.createMock( IServerNode.class );229 EasyMock.expect( localNode.getPassword() ).andReturn( new SecureString( password ) );230 final IRemoteClientNodeController remoteNodeController = mocksControl.createMock( IRemoteClientNodeController.class );231 EasyMock.expect( remoteNodeController.getLocalNode() ).andReturn( localNode ).anyTimes();232 EasyMock.expect( remoteNodeController.getChallenge() ).andReturn( challenge ).anyTimes();233 EasyMock.expect( remoteNodeController.getSalt() ).andReturn( salt ).anyTimes();234 EasyMock.expect( localNode.isPlayerConnected( playerName ) ).andReturn( true );235 final Capture<IMessage> messageCapture = new Capture<>();236 remoteNodeController.sendMessage( EasyMock.capture( messageCapture ), EasyMock.<@Nullable IMessageHandler>isNull() );237 remoteNodeController.close( TableNetworkError.DUPLICATE_PLAYER_NAME );238 mocksControl.replay();239240 final BeginAuthenticationResponseMessage message = new BeginAuthenticationResponseMessage();241 message.setPlayerName( playerName );242 message.setResponse( response );243 getMessageHandler().handleMessage( remoteNodeController, message );244245 mocksControl.verify();246 assertEquals( ErrorMessage.class, messageCapture.getValue().getClass() );247 assertEquals( message.getId(), messageCapture.getValue().getCorrelationId() );248 assertEquals( TableNetworkError.DUPLICATE_PLAYER_NAME, ((ErrorMessage)messageCapture.getValue()).getError() );249 }250251 /**252 * Ensures the253 * {@link BeginAuthenticationResponseMessageHandler#handleMessage} method254 * correctly handles an unexpected message.255 */256 @Test257 public void testHandleMessage_UnexpectedMessage()258 {259 final IMocksControl mocksControl = getMocksControl();260 final IRemoteClientNodeController remoteNodeController = mocksControl.createMock( IRemoteClientNodeController.class );261 remoteNodeController.sendMessage( EasyMock.<@NonNull IMessage>notNull(), EasyMock.<@Nullable IMessageHandler>isNull() );262 remoteNodeController.close( TableNetworkError.UNEXPECTED_MESSAGE );263 mocksControl.replay();264265 final FakeMessage message = new FakeMessage();266 getMessageHandler().handleMessage( remoteNodeController, message );267268 mocksControl.verify();269 }270} ...

Full Screen

Full Screen

Source:NotEmptyConceptDataValidatorTest.java Github

copy

Full Screen

...196 .iterator()197 .next())).andReturn(Integer.MIN_VALUE);198 return this;199 }200 private NotEmptyConceptDataValidatorTest expectGetConceptIdWithCorrectValue(int times) throws Exception {201 EasyMock.expect(mockConcept.getConceptNid()).andReturn(Integer.MIN_VALUE).times(times);202 return this;203 }204 private NotEmptyConceptDataValidatorTest expectGetTypeIdWithCorrectValue(int times) throws Exception {205 EasyMock.expect(mockDescriptionPart.getTypeId()).andReturn(Integer.MIN_VALUE).times(times);206 return this;207 }208 private NotEmptyConceptDataValidatorTest expectGetConceptIdWithWrongValue(int times) throws Exception {209 EasyMock.expect(mockConcept.getConceptNid()).andReturn(Integer.MIN_VALUE).times(times);210 return this;211 }212 private NotEmptyConceptDataValidatorTest expectGetTypeIdWithWrongValue(int times) throws Exception {213 EasyMock.expect(mockDescriptionPart.getTypeId()).andReturn(Integer.MAX_VALUE).times(times);214 return this;215 }216 private NotEmptyConceptDataValidatorTest expectGetTextWithoutNull(int times) throws Exception {217 EasyMock.expect(mockDescriptionPart.getText()).andReturn(new String()).times(times);218 return this;219 }220 private NotEmptyConceptDataValidatorTest expectGetTextWithNull(int times) throws Exception {221 EasyMock.expect(mockDescriptionPart.getText()).andReturn(null).times(times);222 return this;223 }224 private NotEmptyConceptDataValidatorTest expectGetTextWithValue(int times) throws Exception {225 EasyMock.expect(mockDescriptionPart.getText()).andReturn("This is a test String").times(times);226 return this;227 }228 private NotEmptyConceptDataValidatorTest expectGetDescriptions() throws Exception {229 // TODO fix for generics changes EasyMock.expect(mockVersionedDescription.getVersions()).andReturn(mockPartList);230 return this;231 }232}...

Full Screen

Full Screen

Source:NotNumericConceptDataValidatorTest.java Github

copy

Full Screen

...200 .iterator()201 .next())).andReturn(Integer.MIN_VALUE);202 return this;203 }204 private NotNumericConceptDataValidatorTest expectCorrectConceptId(int times) throws Exception {205 EasyMock.expect(mockConcept.getConceptNid()).andReturn(Integer.MIN_VALUE).times(times);206 return this;207 }208 private NotNumericConceptDataValidatorTest expectCorrectTypeId(int times) throws Exception {209 EasyMock.expect(mockDescriptionPart.getTypeId()).andReturn(Integer.MIN_VALUE).times(times);210 return this;211 }212 private NotNumericConceptDataValidatorTest expectWrongConceptId(int times) throws Exception {213 EasyMock.expect(mockConcept.getConceptNid()).andReturn(Integer.MIN_VALUE).times(times);214 return this;215 }216 private NotNumericConceptDataValidatorTest expectWrongTypeId(int times) throws Exception {217 EasyMock.expect(mockDescriptionPart.getTypeId()).andReturn(Integer.MAX_VALUE).times(times);218 return this;219 }220 private NotNumericConceptDataValidatorTest expectNumericValue(int times) throws Exception {221 EasyMock.expect(mockDescriptionPart.getText()).andReturn("-2147483648").times(times);222 return this;223 }224 private NotNumericConceptDataValidatorTest expectNullString(int times) throws Exception {225 EasyMock.expect(mockDescriptionPart.getText()).andReturn(null).times(times);226 return this;227 }228 private NotNumericConceptDataValidatorTest expectAlphaNumericString(int times) throws Exception {229 EasyMock.expect(mockDescriptionPart.getText()).andReturn("This is a test String -5464666").times(times);230 return this;231 }232 private NotNumericConceptDataValidatorTest expectGetDescriptions() throws Exception {233 // TODO fix for genrics EasyMock.expect(mockVersionedDescription.getVersions()).andReturn(mockPartList);234 return this;235 }236}...

Full Screen

Full Screen

times

Using AI Code Generation

copy

Full Screen

1package org.easymock.internal;2import org.easymock.internal.MocksControl;3public class MocksControlTest {4 public static void main(String[] args) {5 MocksControl mc = new MocksControl();6 mc.times(2);7 }8}

Full Screen

Full Screen

times

Using AI Code Generation

copy

Full Screen

1import org.easymock.internal.MocksControl;2import org.easymock.MockControl;3import org.easymock.internal.matchers.Equals;4public class 1 {5 public static void main(String[] args) {6 MockControl control = MocksControl.createControl(Equals.class);7 Equals mock = (Equals) control.getMock();8 mock.matches(null);9 control.setReturnValue(true);10 control.setVoidCallable(1);11 control.replay();12 mock.matches(null);13 control.verify();14 }15}16 at org.easymock.internal.MocksControl.verify(MocksControl.java:109)17 at 1.main(1.java:18)

Full Screen

Full Screen

times

Using AI Code Generation

copy

Full Screen

1package org.easymock.tests2;2import org.easymock.*;3import org.easymock.classextension.*;4import org.easymock.internal.*;5import org.easymock.internal.matchers.*;6import org.easymock.internal.matchers.And;7import org.easymock.internal.matchers.Or;8import org.easymock.internal.matchers.Not;9import org.easymock.internal.matchers.Equals;10import org.easymock.internal.matchers.EqualsWithDelta;11import org.easymock.internal.matchers.Same;12import org.easymock.internal.matchers.InstanceOf;13import org.easymock.internal.matchers.IsNull;14import org.easymock.internal.matchers.NotNull;15import org.easymock.internal.matchers.GreaterThan;16import org.easymock.internal.matchers.LessThan;17import org.easymock.internal.matchers.GreaterThanOrEqual;18import org.easymock.internal.matchers.LessThanOrEqual;19import org.easymock.internal.matchers.Find;20import org.easymock.internal.matchers.EndsWith;21import org.easymock.internal.matchers.StartsWith;22import org.easymock.internal.matchers.Contains;23import org.easymock.internal.matchers.Regex;24import org.easymock.internal.matchers.Capture;25import org.easymock.internal.matchers.CaptureAndReturn;26import org.easymock.internal.matchers.CaptureAndThrow;27import org.easymock.internal.matchers.CaptureAndSet;28import org.easymock.internal.matchers.CaptureAndPost;29import org.easymock.internal.matchers.CaptureAndPostAndThrow;30import org.easymock.internal.matchers.CaptureAndPostAndReturn;31import org.easymock.internal.matchers.CaptureAndPostAndSet;32import org.easymock.internal.matchers.CaptureAndPostAndPost;33import org.easymock.internal.matchers.CaptureAndPostAndPostAndThrow;34import org.easymock.internal.matchers.CaptureAndPostAndPostAndReturn;35import org.easymock.internal.matchers.CaptureAndPostAndPostAndSet;36import org.easymock.internal.matchers.CaptureAndPostAndPostAndPost;37import org.easymock.internal.matchers.CaptureAndPostAndPostAndPostAndThrow;38import org.easymock.internal.matchers.CaptureAndPostAndPostAnd

Full Screen

Full Screen

times

Using AI Code Generation

copy

Full Screen

1import org.easymock.internal.MocksControl;2import java.io.*;3import java.util.*;4public class 1 {5 public static void main(String[] args) {6 MocksControl mock = new MocksControl();7 mock.times(2);8 mock.expectAndReturn(1, 1);9 mock.expectAndReturn(2, 2);10 mock.expectAndReturn(3, 3);11 mock.expectAndReturn(4, 4);12 mock.expectAndReturn(5, 5);13 mock.expectAndReturn(6, 6);14 mock.expectAndReturn(7, 7);15 mock.expectAndReturn(8, 8);16 mock.expectAndReturn(9, 9);17 mock.expectAndReturn(10, 10);18 mock.expectAndReturn(11, 11);19 mock.expectAndReturn(12, 12);20 mock.expectAndReturn(13, 13);21 mock.expectAndReturn(14, 14);22 mock.expectAndReturn(15, 15);23 mock.expectAndReturn(16, 16);24 mock.expectAndReturn(17, 17);25 mock.expectAndReturn(18, 18);26 mock.expectAndReturn(19, 19);27 mock.expectAndReturn(20, 20);28 mock.expectAndReturn(21, 21);29 mock.expectAndReturn(22, 22);30 mock.expectAndReturn(23, 23);31 mock.expectAndReturn(24, 24);32 mock.expectAndReturn(25, 25);33 mock.expectAndReturn(26, 26);34 mock.expectAndReturn(27, 27);35 mock.expectAndReturn(28, 28);36 mock.expectAndReturn(29, 29);37 mock.expectAndReturn(30, 30);38 mock.expectAndReturn(31, 31);39 mock.expectAndReturn(32, 32);40 mock.expectAndReturn(33, 33);41 mock.expectAndReturn(34, 34);42 mock.expectAndReturn(35, 35);43 mock.expectAndReturn(36, 36);44 mock.expectAndReturn(37, 37);45 mock.expectAndReturn(38, 38);46 mock.expectAndReturn(39, 39);47 mock.expectAndReturn(40, 40);48 mock.expectAndReturn(41

Full Screen

Full Screen

times

Using AI Code Generation

copy

Full Screen

1import org.easymock.*;2import org.easymock.classextension.*;3import org.easymock.internal.MocksControl;4import org.easymock.internal.MocksControl.*;5public class Test1 {6 public static void main(String[] args) {7 MocksControl mockControl = MocksControl.createControl(Interface1.class);8 Interface1 mock = (Interface1) mockControl.getMock();9 mock.method1("test");10 mockControl.times(2).method1("test");11 mockControl.replay();12 mock.method1("test");13 mock.method1("test");14 mockControl.verify();15 }16}17interface Interface1 {18 public void method1(String s);19}20java.lang.AssertionError: Unexpected method call Interface1.method1("test"):21 Interface1.method1("test"): expected: 2, actual: 122 at org.easymock.internal.MocksControl.verify(MocksControl.java:119)23 at Test1.main(Test1.java:22)

Full Screen

Full Screen

times

Using AI Code Generation

copy

Full Screen

1import org.easymock.EasyMock;2import org.easymock.internal.MocksControl;3public class 1 {4public static void main(String[] args) {5MockControl mockControl = EasyMock.createControl();6I mock = (I) mockControl.getMock();7MockControl mockControl = EasyMock.createControl();8C mock = (C) mockControl.getMock();9MockControl mockControl = EasyMock.createControl();10A mock = (A) mockControl.getMock();11MockControl mockControl = EasyMock.createControl();12F mock = (F) mockControl.getMock();13MockControl mockControl = EasyMock.createControl();14F mock = (F) mockControl.getMock();15MockControl mockControl = EasyMock.createControl();16F mock = (F) mockControl.getMock();17mockControl.expectAndReturn(mock.m(), 10);18MocksControl.times(mockControl, 2).m();19mockControl.verify();20}21}22interface I {23public int m();24}25class C {26public int m() {27return 1;28}29}30abstract class A {31public int m() {32return 2;33}34}35final class F {36public final int m() {37return 3;38}39}40final class F {41public final int m() {42return 3;43}44}45final class F {46public final int m() {47return 3;48}49}

Full Screen

Full Screen

times

Using AI Code Generation

copy

Full Screen

1package org.easymock.examples;2import org.easymock.MockControl;3import org.easymock.examples.IMethods;4public class TimesExample {5public static void main(String[] args) {6MockControl control = MockControl.createControl(IMethods.class);7IMethods mock = (IMethods) control.getMock();8mock.simpleMethod(1);9mock.simpleMethod(2);10mock.simpleMethod(3);11control.replay();12mock.simpleMethod(1);13mock.simpleMethod(2);14mock.simpleMethod(3);15control.verify();16int times = control.times();17System.out.println("The method was called " + times + " times");18}19}

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful