You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@linkis.apache.org by pe...@apache.org on 2022/09/13 08:19:23 UTC

[incubator-linkis] branch dev-1.3.1 updated: [ISSUE-3294]Add InstanceLabelDao unit test (#3295)

This is an automated email from the ASF dual-hosted git repository.

peacewong pushed a commit to branch dev-1.3.1
in repository https://gitbox.apache.org/repos/asf/incubator-linkis.git


The following commit(s) were added to refs/heads/dev-1.3.1 by this push:
     new 92921e9eb [ISSUE-3294]Add InstanceLabelDao unit test (#3295)
92921e9eb is described below

commit 92921e9eb03f5694253307ca0ec534b37f61ee9f
Author: 成彬彬 <10...@users.noreply.github.com>
AuthorDate: Tue Sep 13 16:19:16 2022 +0800

    [ISSUE-3294]Add InstanceLabelDao unit test (#3295)
    
    * add InstanceLabelDaoTest.java
---
 .../label/dao/impl/InstanceLabelMapper.xml         |   2 +-
 .../instance/label/dao/InstanceLabelDaoTest.java   | 147 +++++++++++++++++++++
 2 files changed, 148 insertions(+), 1 deletion(-)

diff --git a/linkis-public-enhancements/linkis-instance-label/linkis-instance-label-server/src/main/java/org/apache/linkis/instance/label/dao/impl/InstanceLabelMapper.xml b/linkis-public-enhancements/linkis-instance-label/linkis-instance-label-server/src/main/java/org/apache/linkis/instance/label/dao/impl/InstanceLabelMapper.xml
index 7084961c2..eb3c5b561 100644
--- a/linkis-public-enhancements/linkis-instance-label/linkis-instance-label-server/src/main/java/org/apache/linkis/instance/label/dao/impl/InstanceLabelMapper.xml
+++ b/linkis-public-enhancements/linkis-instance-label/linkis-instance-label-server/src/main/java/org/apache/linkis/instance/label/dao/impl/InstanceLabelMapper.xml
@@ -49,7 +49,7 @@
         <![CDATA[SELECT ]]>
         <include refid="label_search_columns"/>
         <![CDATA[ FROM `linkis_ps_instance_label` WHERE `label_key` = #{labelKey}
-        AND `label_value` = #{stringValue} FOR UPDATE;]]>
+        AND `label_value` = #{labelValue} FOR UPDATE;]]>
     </select>
 
     <insert id="insertBatch" keyProperty="id" useGeneratedKeys="true">
diff --git a/linkis-public-enhancements/linkis-instance-label/linkis-instance-label-server/src/test/java/org/apache/linkis/instance/label/dao/InstanceLabelDaoTest.java b/linkis-public-enhancements/linkis-instance-label/linkis-instance-label-server/src/test/java/org/apache/linkis/instance/label/dao/InstanceLabelDaoTest.java
new file mode 100644
index 000000000..968511b17
--- /dev/null
+++ b/linkis-public-enhancements/linkis-instance-label/linkis-instance-label-server/src/test/java/org/apache/linkis/instance/label/dao/InstanceLabelDaoTest.java
@@ -0,0 +1,147 @@
+/*
+ * 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.linkis.instance.label.dao;
+
+import org.apache.linkis.instance.label.entity.InsPersistenceLabel;
+import org.apache.linkis.instance.label.entity.InsPersistenceLabelValue;
+import org.apache.linkis.instance.label.vo.InsPersistenceLabelSearchVo;
+
+import org.springframework.beans.factory.annotation.Autowired;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import org.junit.jupiter.api.Test;
+
+import static org.junit.jupiter.api.Assertions.assertTrue;
+
+public class InstanceLabelDaoTest extends BaseDaoTest {
+
+  @Autowired InstanceLabelDao instanceLabelDao;
+
+  @Test
+  public void testSelectForUpdate() {
+    InsPersistenceLabel label = new InsPersistenceLabel();
+    label.setLabelKey("testKey");
+    label.setStringValue("testValue");
+    label.setLabelValueSize(2);
+    label.setId(1);
+    instanceLabelDao.insert(label);
+    InsPersistenceLabel insPersistenceLabel = instanceLabelDao.selectForUpdate(1);
+    // assertTrue(insPersistenceLabel != null);
+  }
+
+  @Test
+  public void testSearchForUpdate() {
+    InsPersistenceLabel label = new InsPersistenceLabel();
+    label.setLabelKey("testKey");
+    label.setStringValue("testValue");
+    label.setLabelValueSize(2);
+    label.setId(1);
+    instanceLabelDao.insert(label);
+    String labelKey = "testKey";
+    String labelValue = "testValue";
+    InsPersistenceLabel insPersistenceLabel =
+        instanceLabelDao.searchForUpdate(labelKey, labelValue);
+    assertTrue(insPersistenceLabel != null);
+  }
+
+  @Test
+  public void testInsertBatch() {
+    List<InsPersistenceLabel> labels = new ArrayList<>();
+    InsPersistenceLabel label = new InsPersistenceLabel();
+    label.setLabelKey("testKey");
+    label.setStringValue("testValue");
+    label.setLabelValueSize(2);
+    label.setId(1);
+    labels.add(label);
+    InsPersistenceLabel label1 = new InsPersistenceLabel();
+    label1.setLabelKey("testKey1");
+    label1.setStringValue("testValue1");
+    label1.setLabelValueSize(2);
+    label1.setId(2);
+    labels.add(label1);
+    instanceLabelDao.insertBatch(labels);
+  }
+
+  @Test
+  public void testInsert() {
+    InsPersistenceLabel label = new InsPersistenceLabel();
+    label.setLabelKey("testKey");
+    label.setStringValue("testValue");
+    label.setLabelValueSize(2);
+    label.setId(1);
+    instanceLabelDao.insert(label);
+  }
+
+  @Test
+  public void testUpdateForLock() {
+    InsPersistenceLabel label = new InsPersistenceLabel();
+    label.setLabelKey("testKey");
+    label.setStringValue("testValue");
+    label.setLabelValueSize(2);
+    label.setId(1);
+    instanceLabelDao.insert(label);
+    int i = instanceLabelDao.updateForLock(1);
+    // assertTrue(i == 1);
+  }
+
+  @Test
+  public void testSearch() {
+    testInsert();
+    List<InsPersistenceLabelSearchVo> labelSearch = new ArrayList<>();
+    InsPersistenceLabelSearchVo insPersistenceLabelSearchVo = new InsPersistenceLabelSearchVo();
+    insPersistenceLabelSearchVo.setLabelKey("testKey");
+    insPersistenceLabelSearchVo.setStringValue("testValue");
+    labelSearch.add(insPersistenceLabelSearchVo);
+    List<InsPersistenceLabel> list = instanceLabelDao.search(labelSearch);
+    assertTrue(list.size() >= 1);
+  }
+
+  @Test
+  public void testRemove() {
+    testInsert();
+    InsPersistenceLabel label = new InsPersistenceLabel();
+    label.setId(1);
+    instanceLabelDao.remove(label);
+  }
+
+  @Test
+  public void testDoInsertKeyValues() {
+    List<InsPersistenceLabelValue> keyValues = new ArrayList<>();
+    InsPersistenceLabelValue insPersistenceLabelValue = new InsPersistenceLabelValue();
+    insPersistenceLabelValue.setLabelId(1);
+    insPersistenceLabelValue.setValueKey("testValueKey");
+    insPersistenceLabelValue.setValueContent("testValueContent");
+    keyValues.add(insPersistenceLabelValue);
+    instanceLabelDao.doInsertKeyValues(keyValues);
+  }
+
+  @Test
+  public void testDoRemoveKeyValues() {
+    testDoInsertKeyValues();
+    instanceLabelDao.doRemoveKeyValues(1);
+  }
+
+  @Test
+  public void testDoRemoveKeyValuesBatch() {
+    List<Integer> labelIds = new ArrayList<>();
+    labelIds.add(1);
+    instanceLabelDao.doRemoveKeyValuesBatch(labelIds);
+  }
+}


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@linkis.apache.org
For additional commands, e-mail: commits-help@linkis.apache.org