-
Notifications
You must be signed in to change notification settings - Fork 685
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GEODE-10256: HttpSessionListener is not working #7619
Open
masaki-yamakawa
wants to merge
1
commit into
apache:develop
Choose a base branch
from
masaki-yamakawa:feature/GEODE-10256
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
137 changes: 137 additions & 0 deletions
137
...ns/geode-modules/src/test/java/org/apache/geode/modules/util/SessionCustomExpiryTest.java
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,137 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license | ||
* agreements. See the NOTICE file distributed with this work for additional information regarding | ||
* copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance with the License. You may obtain a | ||
* copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License | ||
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express | ||
* or implied. See the License for the specific language governing permissions and limitations under | ||
* the License. | ||
*/ | ||
|
||
package org.apache.geode.modules.util; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
import static org.mockito.Mockito.doReturn; | ||
import static org.mockito.Mockito.mock; | ||
import static org.mockito.Mockito.spy; | ||
import static org.mockito.Mockito.when; | ||
|
||
import java.lang.reflect.Field; | ||
|
||
import javax.servlet.http.HttpSession; | ||
|
||
import org.junit.Before; | ||
import org.junit.Rule; | ||
import org.junit.Test; | ||
import org.junit.contrib.java.lang.system.RestoreSystemProperties; | ||
|
||
import org.apache.geode.cache.ExpirationAction; | ||
import org.apache.geode.cache.ExpirationAttributes; | ||
import org.apache.geode.cache.Region; | ||
import org.apache.geode.internal.cache.InternalCache; | ||
import org.apache.geode.modules.session.catalina.DeltaSession; | ||
import org.apache.geode.util.internal.GeodeGlossary; | ||
|
||
public class SessionCustomExpiryTest { | ||
|
||
@Rule | ||
public final RestoreSystemProperties restoreSystemProperties = new RestoreSystemProperties(); | ||
|
||
private InternalCache cache = mock(InternalCache.class); | ||
private SessionCustomExpiry expiry; | ||
private int expiryDelay = 3; | ||
|
||
@Before | ||
public void setUp() throws Exception { | ||
System.setProperty(GeodeGlossary.GEMFIRE_PREFIX + "SessionExpiry.Delay", | ||
String.valueOf(expiryDelay)); | ||
|
||
Field isServerField = SessionCustomExpiry.class.getDeclaredField("isServer"); | ||
isServerField.setAccessible(true); | ||
isServerField.set(null, null); | ||
|
||
expiry = spy(SessionCustomExpiry.class); | ||
doReturn(cache).when(expiry).getCache(); | ||
} | ||
|
||
@Test | ||
public void testGetExpiryOnServerWhenSetMaxInactiveInterval() { | ||
final Region.Entry<String, HttpSession> entry = mock(Region.Entry.class); | ||
final DeltaSession session = mock(DeltaSession.class); | ||
final int maxInactiveInterval = 2000; | ||
|
||
when(cache.isServer()).thenReturn(true); | ||
when(entry.getValue()).thenReturn(session); | ||
when(session.getMaxInactiveInterval()).thenReturn(maxInactiveInterval); | ||
|
||
ExpirationAttributes expirationAttrs = expiry.getExpiry(entry); | ||
|
||
assertThat(expirationAttrs).isEqualTo( | ||
new ExpirationAttributes(maxInactiveInterval + expiryDelay, ExpirationAction.DESTROY)); | ||
} | ||
|
||
@Test | ||
public void testGetExpiryOnServerWhenSetMaxInactiveIntervalZero() { | ||
final Region.Entry<String, HttpSession> entry = mock(Region.Entry.class); | ||
final DeltaSession session = mock(DeltaSession.class); | ||
final int maxInactiveInterval = 0; | ||
|
||
when(cache.isServer()).thenReturn(true); | ||
when(entry.getValue()).thenReturn(session); | ||
when(session.getMaxInactiveInterval()).thenReturn(maxInactiveInterval); | ||
|
||
ExpirationAttributes expirationAttrs = expiry.getExpiry(entry); | ||
|
||
assertThat(expirationAttrs) | ||
.isEqualTo(new ExpirationAttributes(maxInactiveInterval, ExpirationAction.DESTROY)); | ||
} | ||
|
||
@Test | ||
public void testGetExpiryOnClientWhenSetMaxInactiveInterval() { | ||
final Region.Entry<String, HttpSession> entry = mock(Region.Entry.class); | ||
final DeltaSession session = mock(DeltaSession.class); | ||
final int maxInactiveInterval = 3000; | ||
|
||
when(cache.isServer()).thenReturn(false); | ||
when(entry.getValue()).thenReturn(session); | ||
when(session.getMaxInactiveInterval()).thenReturn(maxInactiveInterval); | ||
|
||
ExpirationAttributes expirationAttrs = expiry.getExpiry(entry); | ||
|
||
assertThat(expirationAttrs) | ||
.isEqualTo(new ExpirationAttributes(maxInactiveInterval, ExpirationAction.DESTROY)); | ||
} | ||
|
||
@Test | ||
public void testGetExpiryOnClientWhenSetMaxInactiveIntervalZero() { | ||
final Region.Entry<String, HttpSession> entry = mock(Region.Entry.class); | ||
final DeltaSession session = mock(DeltaSession.class); | ||
final int maxInactiveInterval = 0; | ||
|
||
when(cache.isServer()).thenReturn(false); | ||
when(entry.getValue()).thenReturn(session); | ||
when(session.getMaxInactiveInterval()).thenReturn(maxInactiveInterval); | ||
|
||
ExpirationAttributes expirationAttrs = expiry.getExpiry(entry); | ||
|
||
assertThat(expirationAttrs) | ||
.isEqualTo(new ExpirationAttributes(maxInactiveInterval, ExpirationAction.DESTROY)); | ||
} | ||
|
||
@Test | ||
public void testGetExpiryWhenSessionIsNull() { | ||
final Region.Entry<String, HttpSession> entry = mock(Region.Entry.class); | ||
|
||
when(cache.isServer()).thenReturn(true); | ||
when(entry.getValue()).thenReturn(null); | ||
|
||
ExpirationAttributes expirationAttrs = expiry.getExpiry(entry); | ||
|
||
assertThat(expirationAttrs).isEqualTo(new ExpirationAttributes(1, ExpirationAction.DESTROY)); | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't see what symbol from
geode-junit
is being used to require this addition.