test: 测试全局注册多个监听器。

This commit is contained in:
Suomm 2024-04-12 10:01:29 +08:00
parent 6afc5f1f7b
commit 39a6431417
3 changed files with 81 additions and 0 deletions

View File

@ -0,0 +1,28 @@
/*
* Copyright (c) 2022-2023, Mybatis-Flex (fuhai999@gmail.com).
* <p>
* Licensed 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
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* 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 com.mybatisflex.test;
import com.mybatisflex.annotation.SetListener;
public class AccountOnSetListener2 implements SetListener {
@Override
public Object onSet(Object entity, String property, Object value) {
return value;
}
}

View File

@ -0,0 +1,28 @@
/*
* Copyright (c) 2022-2023, Mybatis-Flex (fuhai999@gmail.com).
* <p>
* Licensed 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
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* 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 com.mybatisflex.test;
import com.mybatisflex.annotation.SetListener;
public class AccountOnSetListener3 implements SetListener {
@Override
public Object onSet(Object entity, String property, Object value) {
return value;
}
}

View File

@ -0,0 +1,25 @@
package com.mybatisflex.test;
import com.mybatisflex.annotation.SetListener;
import com.mybatisflex.core.FlexGlobalConfig;
import org.junit.Assert;
import org.junit.Test;
import java.util.List;
/**
* @author 王帅
* @since 2024-04-12
*/
public class AccountTester {
@Test
public void testRegisterListener() {
FlexGlobalConfig globalConfig = FlexGlobalConfig.getDefaultConfig();
globalConfig.registerSetListener(new AccountOnSetListener2(), Account.class);
globalConfig.registerSetListener(new AccountOnSetListener3(), Account.class);
List<SetListener> setListener = globalConfig.getSupportedSetListener(Account.class);
Assert.assertEquals(2, setListener.size());
}
}