How to use testMultipleUsers method of ru.qatools.gridrouter.sessions.MemoryStatsCounterTest class

Best Gridrouter code snippet using ru.qatools.gridrouter.sessions.MemoryStatsCounterTest.testMultipleUsers

Source:MemoryStatsCounterTest.java Github

copy

Full Screen

...86 storage.deleteSession("session4");87 assertThat(countJsonFor("user"), is("{\"firefox\":{\"33\":2}}"));88 }89 @Test90 public void testMultipleUsers() throws Exception {91 storage.startSession("session1", "user1", "firefox", "33");92 storage.startSession("session2", "user2", "firefox", "33");93 storage.startSession("session3", "user2", "firefox", "33");94 assertThat(countJsonFor("user1"), is("{\"firefox\":{\"33\":1}}"));95 assertThat(countJsonFor("user2"), is("{\"firefox\":{\"33\":2}}"));96 storage.deleteSession("session1");97 storage.deleteSession("session2");98 assertThat(countJsonFor("user1"), is("{}"));99 assertThat(countJsonFor("user2"), is("{\"firefox\":{\"33\":1}}"));100 }101 @Test102 public void testNewSessionsAreNotExpired() throws Exception {103 storage.startSession("session1", "user", "firefox", "33");104 storage.startSession("session2", "user", "firefox", "33");105 assertThat(expiredSessions(1000), is(empty()));106 assertThat(countJsonFor("user"), is("{\"firefox\":{\"33\":2}}"));107 }108 @Test109 public void testOldSessionsAreExpired() throws Exception {110 storage.startSession("session1", "user", "firefox", "33");111 storage.startSession("session2", "user", "firefox", "33");112 Thread.sleep(500);113 storage.startSession("session3", "user", "firefox", "33");114 assertThat(expiredSessions(250), containsInAnyOrder("session1", "session2"));115 assertThat(countJsonFor("user"), is("{\"firefox\":{\"33\":1}}"));116 Thread.sleep(500);117 assertThat(expiredSessions(250), contains("session3"));118 assertThat(countJsonFor("user"), is("{}"));119 }120 @Test121 public void testUpdateExistingSession() throws Exception {122 storage.startSession("session1", "user", "firefox", "33");123 Thread.sleep(500);124 storage.updateSession("session1");125 assertThat(expiredSessions(250), is(empty()));126 }127 @Test128 public void testMultipleUsersExpiration() throws Exception {129 storage.startSession("session1", "user1", "firefox", "33");130 Thread.sleep(500);131 storage.startSession("session2", "user2", "firefox", "33");132 assertThat(expiredSessions(250), contains("session1"));133 assertThat(countJsonFor("user1"), is("{}"));134 assertThat(countJsonFor("user2"), is("{\"firefox\":{\"33\":1}}"));135 }136 private String countJsonFor(String user) throws JsonProcessingException {137 return toJson(storage.getStats(user));138 }139 public Set<String> expiredSessions(int millis) {140 return expiredSessions(Duration.ofMillis(millis));141 }142 public Set<String> expiredSessions(Duration duration) {...

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