前提・実現したいこと
SpringBootで、セッションスコープのオブジェクトに格納した値をテストクラスから確認している
SampleScopeBeanTest#test1メソッド(後述参照)を起動するが、想定した値でなくNULLが取得されてしまい、テスト失敗する
test1メソッドの流れ
0. テスト用コントローラをMockMvcで呼び出しセッションスコープにオブジェクトを格納する
- 格納したオブジェクトをテストクラスから確認する
発生している問題・エラーメッセージ
テストクラスから、セッションスコープのオブジェクトに格納した値を取得してもNULLになってしまう
org.opentest4j.AssertionFailedError: expected: <value1> but was: <null>
at org.junit.jupiter.api.AssertionUtils.fail(AssertionUtils.java:55) at org.junit.jupiter.api.AssertionUtils.failNotEqual(AssertionUtils.java:62) at org.junit.jupiter.api.AssertEquals.assertEquals(AssertEquals.java:182) at org.junit.jupiter.api.AssertEquals.assertEquals(AssertEquals.java:177) at org.junit.jupiter.api.Assertions.assertEquals(Assertions.java:1124) at com.example.demo.SampleScopeBeanTest.test1(SampleScopeBeanTest.java:33)
・・・略
該当のソースコード
セッションスコープのオブジェクト
java
1package com.example.demo.bean; 2 3import java.io.Serializable; 4import java.util.HashMap; 5import java.util.Map; 6 7import org.springframework.context.annotation.Scope; 8import org.springframework.context.annotation.ScopedProxyMode; 9import org.springframework.stereotype.Component; 10 11@Component 12@Scope(value = "session", proxyMode = ScopedProxyMode.TARGET_CLASS) 13public class SampleScopeBean implements Serializable { 14 15 private static final long serialVersionUID = 1L; 16 17 private Map<String, Object> maps; 18 19 public SampleScopeBean() { 20 this.maps = new HashMap<String, Object>(); 21 } 22 23 public Object get(String key) { 24 return maps.get(key); 25 } 26 27 public Object put(String key, Object value) { 28 return maps.put(key, value); 29 } 30 31 public Object remove(String key) { 32 return maps.remove(key); 33 } 34 35} 36
テスト用のコントローラクラス
java
1package com.example.demo.controller; 2 3import org.springframework.beans.factory.annotation.Autowired; 4import org.springframework.web.bind.annotation.GetMapping; 5import org.springframework.web.bind.annotation.RequestMapping; 6import org.springframework.web.bind.annotation.RestController; 7 8import com.example.demo.bean.SampleScopeBean; 9 10@RestController 11@RequestMapping("test/session") 12public class VerifyRestController { 13 @Autowired 14 SampleScopeBean ssb; 15 String key1 = "key1"; 16 String value1 = "value1"; 17 18 // テスト対象 19 @GetMapping("prepare") 20 public String prepare() { 21 System.out.println("prepare"); 22 System.out.println("ssb_bef:" + ssb.get(key1)); 23 ssb.put(key1, value1); 24 System.out.println("ssb_aft:" + ssb.get(key1)); 25 26 return "ok"; 27 } 28 29 @GetMapping("test1") 30 public String test1(boolean isDelete) { 31 System.out.println("test1"); 32 System.out.println("ssb_bef:" + ssb.get(key1)); 33 if (isDelete) { 34 ssb.remove(key1); 35 } 36 System.out.println("ssb_aft:" + ssb.get(key1)); 37 38 return "ok"; 39 } 40 41} 42
テストクラス
java
1package com.example.demo; 2 3import static org.junit.jupiter.api.Assertions.assertEquals; 4import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; 5import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; 6 7import org.junit.jupiter.api.Test; 8import org.springframework.beans.factory.annotation.Autowired; 9import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc; 10import org.springframework.boot.test.context.SpringBootTest; 11import org.springframework.test.web.servlet.MockMvc; 12 13import com.example.demo.bean.SampleScopeBean; 14 15@AutoConfigureMockMvc 16@SpringBootTest 17class SampleScopeBeanTest { 18 @Autowired 19 MockMvc mvc; 20 @Autowired 21 SampleScopeBean ssb; 22 String baseUrl="/test/session"; 23 24 /** 25 * テスト内容 26 * 以下にアクセスしてコントローラがセッションスコープに格納した値を、 27 * テストクラスにAuwiredしたセッションスコープから値を取得して確認している 28 * http://localhost:8080/test/session/prepare 29 * @throws Exception 30 */ 31 @Test 32 void test1() throws Exception { 33 this.mvc.perform(get(baseUrl+"/prepare")).andExpect(status().isOk()); 34 String expected = (String) ssb.get("key1"); 35 assertEquals("value1", expected); 36 } 37 38} 39
コメント
テスト時にTomcatなどサーバーが立ち上がるので、セッションが作成されていると考えています。
テスト時はセッションが作成されないのでしょうか?
1028 追記
以下にセッションスコープを利用した場合のテストについて記載されていました。。。
まだ読み切れていませんが、こちら確認して対応します。
https://spring.pleiades.io/spring-framework/docs/current/spring-framework-reference/testing.html
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/28 16:44
2020/10/29 01:11
2020/10/29 14:29