Skip to content

Commit

Permalink
BIGTOP-4334: Add ut cases for enums classes in ai core module (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
xianrenzw authored Jan 25, 2025
1 parent 22c4336 commit 6b4d151
Show file tree
Hide file tree
Showing 2 changed files with 98 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
/*
* 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
*
* https://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.bigtop.manager.ai.core.enums;

import org.junit.jupiter.api.Test;

import java.util.List;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.jupiter.api.Assertions.assertTrue;

public class MessageTypeTest {

@Test
public void testGetSenders() {
List<String> senders = MessageType.getSenders();
assertEquals(3, senders.size());
assertTrue(senders.contains("user"));
assertTrue(senders.contains("ai"));
assertTrue(senders.contains("system"));
}

@Test
public void testGetMessageSender() {
assertEquals(MessageType.USER, MessageType.getMessageSender("user"));
assertEquals(MessageType.AI, MessageType.getMessageSender("ai"));
assertEquals(MessageType.SYSTEM, MessageType.getMessageSender("system"));
assertNull(MessageType.getMessageSender(""));
assertNull(MessageType.getMessageSender(null));
assertNull(MessageType.getMessageSender("unknown"));
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
/*
* 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
*
* https://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.bigtop.manager.ai.core.enums;

import org.junit.jupiter.api.Test;

import java.util.List;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.jupiter.api.Assertions.assertTrue;

public class PlatformTypeTest {

@Test
public void testGetPlatforms() {
List<String> senders = PlatformType.getPlatforms();
assertEquals(3, senders.size());
assertTrue(senders.contains("openai"));
assertTrue(senders.contains("dashscope"));
assertTrue(senders.contains("qianfan"));
}

@Test
public void testGetPlatformType() {
assertEquals(PlatformType.OPENAI, PlatformType.getPlatformType("openai"));
assertEquals(PlatformType.DASH_SCOPE, PlatformType.getPlatformType("dashscope"));
assertEquals(PlatformType.QIANFAN, PlatformType.getPlatformType("qianfan"));
assertNull(PlatformType.getPlatformType(""));
assertNull(PlatformType.getPlatformType(null));
assertNull(PlatformType.getPlatformType("unknown"));
}
}

0 comments on commit 6b4d151

Please sign in to comment.