Browse Source

正则单元测试+修复登出错误

NorthLan 6 years ago
parent
commit
f1ed7327e4

+ 1 - 1
zen-api/src/main/kotlin/com/gxzc/zen/umps/config/ShiroConfig.kt

@@ -85,7 +85,7 @@ class ShiroConfig {
             filterChainDefinitionMap = linkedMapOf<String, String>( // BUG 此处一定要使用 linkedHashMap 否则顺序有问题
                     "/auth/setcookie" to "canon", // 设置cookie
                     "/auth/check" to "canon", // 检查登录状态
-                    "/auth/logout" to "logout", // 登出
+                    "/auth/logout" to "canon", // 登出
                     "/test/**" to "canon", // 测试 免登录
                     "/upload/**" to "canon", // 上传免登录
                     "/fdfsupload/**" to "canon", // 上传免登录

+ 25 - 0
zen-web/src/test/kotlin/com/gxzc/zen/Test.kt

@@ -0,0 +1,25 @@
+package com.gxzc.zen
+
+import org.junit.Test
+
+/**
+ *
+ * @author NorthLan
+ * @date 2018/9/9
+ * @url https://noahlan.com
+ */
+class Test{
+    @Test
+    fun testIndexOf() {
+        val filenameList = arrayOf("34-离婚-2002-1.pdf", "34-离婚-2002-15.pdf")
+        val volumeList = arrayOf("34-离婚-2002-1", "34-离婚-2002-15")
+
+        val testFilename = "34-离婚-2002-15.pdf"
+        val testVolumeCode = "34-离婚-2002-1"
+        val testVolumeCode2 = "34-离婚-2002-15"
+
+
+        println(testFilename.matches(Regex("^($testVolumeCode2)(\\D+.)")))
+        println(testFilename.indexOf(testVolumeCode2))
+    }
+}