summaryrefslogtreecommitdiff
path: root/src/test/java/com/android/vts/job/VtsAlertJobServletTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/com/android/vts/job/VtsAlertJobServletTest.java')
-rw-r--r--src/test/java/com/android/vts/job/VtsAlertJobServletTest.java154
1 files changed, 0 insertions, 154 deletions
diff --git a/src/test/java/com/android/vts/job/VtsAlertJobServletTest.java b/src/test/java/com/android/vts/job/VtsAlertJobServletTest.java
deleted file mode 100644
index 9c24c65..0000000
--- a/src/test/java/com/android/vts/job/VtsAlertJobServletTest.java
+++ /dev/null
@@ -1,154 +0,0 @@
-/*
- * Copyright (C) 2017 The Android Open Source Project
- *
- * 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
- *
- * 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 com.android.vts.job;
-
-import static com.googlecode.objectify.ObjectifyService.factory;
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertTrue;
-
-import com.android.vts.entity.DeviceInfoEntity;
-import com.android.vts.entity.TestAcknowledgmentEntity;
-import com.android.vts.util.ObjectifyTestBase;
-import com.google.appengine.api.datastore.Key;
-import com.google.appengine.api.datastore.KeyFactory;
-import com.google.appengine.api.users.User;
-import com.google.appengine.api.users.UserServiceFactory;
-import com.google.appengine.tools.development.testing.LocalServiceTestHelper;
-import com.google.appengine.tools.development.testing.LocalUserServiceTestConfig;
-import java.util.ArrayList;
-import java.util.HashSet;
-import java.util.List;
-import java.util.Set;
-
-import org.junit.jupiter.api.AfterEach;
-import org.junit.jupiter.api.Test;
-import org.junit.jupiter.api.BeforeEach;
-
-public class VtsAlertJobServletTest extends ObjectifyTestBase {
- private final LocalServiceTestHelper userHelper =
- new LocalServiceTestHelper(new LocalUserServiceTestConfig())
- .setEnvIsAdmin(true)
- .setEnvIsLoggedIn(true)
- .setEnvEmail("testemail@domain.com")
- .setEnvAuthDomain("test");
-
- User user;
- private Key testKey;
- private Set<String> allTestCases;
- private List<DeviceInfoEntity> allDevices;
-
- @BeforeEach
- void setUpExtra() {
- factory().register(DeviceInfoEntity.class);
- factory().register(TestAcknowledgmentEntity.class);
-
- userHelper.setUp();
- user = UserServiceFactory.getUserService().getCurrentUser();
-
- testKey = KeyFactory.createKey(TestAcknowledgmentEntity.KIND, "test");
-
- allTestCases = new HashSet<>();
- allTestCases.add("testCase1");
- allTestCases.add("testCase2");
- allTestCases.add("testCase3");
-
- allDevices = new ArrayList<>();
- DeviceInfoEntity device1 =
- new DeviceInfoEntity(
- testKey, "branch1", "product1", "flavor1", "1234", "32", "abi");
- DeviceInfoEntity device2 =
- new DeviceInfoEntity(
- testKey, "branch2", "product2", "flavor2", "1235", "32", "abi");
- allDevices.add(device1);
- allDevices.add(device2);
- }
-
- @AfterEach
- public void tearDown() {
- userHelper.tearDown();
- }
-
- /** Test that acknowledge-all works correctly. */
- @Test
- public void testSeparateAcknowledgedAll() {
-
- Set<String> testCases = new HashSet<>(allTestCases);
- List<TestAcknowledgmentEntity> acks = new ArrayList<>();
- TestAcknowledgmentEntity ack =
- new TestAcknowledgmentEntity(testKey, user, null, null, null, null);
- acks.add(ack);
-
- Set<String> acknowledged =
- VtsAlertJobServlet.separateAcknowledged(testCases, allDevices, acks);
- assertEquals(allTestCases.size(), acknowledged.size());
- assertTrue(acknowledged.containsAll(allTestCases));
- assertEquals(0, testCases.size());
- }
-
- /** Test that specific branch/device/test case acknowledgement works correctly. */
- @Test
- public void testSeparateAcknowledgedSpecific() {
-
- Set<String> testCases = new HashSet<>(allTestCases);
- List<TestAcknowledgmentEntity> acks = new ArrayList<>();
- List<String> branches = new ArrayList<>();
- branches.add("branch1");
-
- List<String> devices = new ArrayList<>();
- devices.add("flavor2");
-
- List<String> testCaseNames = new ArrayList<>();
- testCaseNames.add("testCase1");
-
- TestAcknowledgmentEntity ack =
- new TestAcknowledgmentEntity(
- testKey, user, branches, devices, testCaseNames, null);
- acks.add(ack);
-
- Set<String> acknowledged =
- VtsAlertJobServlet.separateAcknowledged(testCases, allDevices, acks);
- assertEquals(0, acknowledged.size());
- assertEquals(allTestCases.size(), testCases.size());
- }
-
- /** Test that specific branch/device/test case acknowledgement skips device mismatches. */
- @Test
- public void testSeparateAcknowledgedSpecificMismatch() {
-
- Set<String> testCases = new HashSet<>(allTestCases);
- List<TestAcknowledgmentEntity> acks = new ArrayList<>();
- List<String> branches = new ArrayList<>();
- branches.add("branch1");
-
- List<String> devices = new ArrayList<>();
- devices.add("flavor1");
-
- List<String> testCaseNames = new ArrayList<>();
- testCaseNames.add("testCase1");
-
- TestAcknowledgmentEntity ack =
- new TestAcknowledgmentEntity(
- testKey, user, branches, devices, testCaseNames, null);
- acks.add(ack);
-
- Set<String> acknowledged =
- VtsAlertJobServlet.separateAcknowledged(testCases, allDevices, acks);
- assertEquals(1, acknowledged.size());
- assertTrue(acknowledged.contains("testCase1"));
- assertTrue(!testCases.contains("testCase1"));
- }
-}