/test/vti/dashboard/src/main/java/com/android/vts/entity/ |
D | TestEntity.java | 41 public class TestEntity implements DashboardEntity { class 42 protected static final Logger logger = Logger.getLogger(TestEntity.class.getName()); 63 public TestEntity(String testName, boolean hasProfilingData) { in TestEntity() method in TestEntity 73 public TestEntity(String testName) { in TestEntity() method in TestEntity 79 public com.googlecode.objectify.Key<TestEntity> save() { in save() 96 com.googlecode.objectify.Key.create(TestEntity.class, this.getTestName()); in getTestRunKey() 110 List<TestEntity> testEntityList = getAllTest(); in getAllTestNames() 117 public static List<TestEntity> getAllTest() { in getAllTest() 118 return ofy().load().type(TestEntity.class).list(); in getAllTest() 123 if (obj == null || !TestEntity.class.isAssignableFrom(obj.getClass())) { in equals() [all …]
|
D | CodeCoverageEntity.java | 102 Key testParentKey = Key.create(TestEntity.class, testRunKey.getParent().getName()); in getParentKey() 122 KeyFactory.createKey(TestEntity.KIND, this.getParent().getParent().getName()); in toEntity()
|
D | TestRunEntity.java | 214 this.testRunParent = com.googlecode.objectify.Key.create(TestEntity.class, testName); in TestRunEntity() 257 Key parentKey = KeyFactory.createKey(TestEntity.KIND, testName); in getKey() 279 com.googlecode.objectify.Key.create(TestEntity.class, testName); in getByTestNameId() 294 TestEntity.class, this.testName); in getOfyKey()
|
D | TestCoverageStatusEntity.java | 126 TestEntity.class, in getDeviceInfoEntityKeyList() 183 com.googlecode.objectify.Key.create(TestEntity.class, this.testName); in getTestRunEntity()
|
/test/vti/dashboard/src/main/java/com/android/vts/servlet/ |
D | ShowProfilingListServlet.java | 21 import com.android.vts.entity.TestEntity; 59 List<String> tests = ofy().load().type(TestEntity.class) in doGetHandler() 60 .filter(TestEntity.HAS_PROFILING_DATA, true).list().stream() in doGetHandler() 61 .sorted(Comparator.comparing(TestEntity::getTestName)).map(t -> t.getTestName()) in doGetHandler()
|
D | ShowTestAcknowledgmentServlet.java | 20 import com.android.vts.entity.TestEntity; 65 List<String> allTestNames = TestEntity.getAllTestNames(); in doGetHandler()
|
D | DashboardMainServlet.java | 19 import com.android.vts.entity.TestEntity; 183 List<String> allTestNames = TestEntity.getAllTestNames(); in doGetHandler() 206 Key testKey = KeyFactory.createKey(TestEntity.KIND, statusEntity.getTestName()); in doGetHandler()
|
D | ShowCoverageOverviewServlet.java | 22 import com.android.vts.entity.TestEntity; 158 TestEntity.class, in getTestRunEntityKeyList() 245 TestEntity.class, in getCoverageDispatcher() 363 PathElement.of(TestEntity.KIND, testName), in getCoverageDataTable() 372 PathElement.of(TestEntity.KIND, testName), in getCoverageDataTable()
|
D | ShowCoverageServlet.java | 23 import com.android.vts.entity.TestEntity; 99 .create(TestEntity.class, test); in doGetHandler()
|
D | ShowTableServlet.java | 21 import com.android.vts.entity.TestEntity; 152 Key testKey = KeyFactory.createKey(TestEntity.KIND, testName); in doGetHandler()
|
/test/vti/dashboard/src/test/java/com/android/vts/entity/ |
D | CodeCoverageEntityTest.java | 34 Key testParentKey = Key.create(TestEntity.class, "test1"); in saveTest() 48 Key testParentKey = Key.create(TestEntity.class, "test1"); in getUrlSafeKeyTest()
|
D | TestAcknowledgmentEntityTest.java | 56 Key key = KeyFactory.createKey(TestEntity.KIND, "test"); in testEntitySerialization() 96 Key key = KeyFactory.createKey(TestEntity.KIND, "test"); in testEntitySerializationWithNulls() 123 Key key = KeyFactory.createKey(TestEntity.KIND, "test"); in testJsonSerialization() 151 Key key = KeyFactory.createKey(TestEntity.KIND, "test"); in testJsonSerializationWithNulls()
|
D | CodeCoverageFileEntityTest.java | 37 Key testParentKey = Key.create(TestEntity.class, "test1"); in saveTest()
|
D | ApiCoverageExcludedEntityTest.java | 52 Key testParentKey = Key.create(TestEntity.class, "test1"); in getUrlSafeKeyTest()
|
/test/vti/dashboard/src/test/java/com/android/vts/api/ |
D | DataRestServletTest.java | 22 import com.android.vts.entity.TestEntity; 59 factory().register(TestEntity.class); in setUpExtra() 75 Key testParentKey = Key.create(TestEntity.class, "test1"); in setUpExtra()
|
D | CoverageRestServletTest.java | 24 import com.android.vts.entity.TestEntity; 75 Key testParentKey = Key.create(TestEntity.class, "test1"); in testApiData()
|
/test/vti/dashboard/src/main/java/com/android/vts/api/ |
D | TestDataForDevServlet.java | 26 import com.android.vts.entity.TestEntity; 399 TestEntity testEntity = new TestEntity(testRun.testName); in doPost() 536 TestEntity oldTestEntity = in doPost() 537 TestEntity.fromEntity(oldTest); in doPost() 576 Key parentKey = KeyFactory.createKey(TestEntity.KIND, test); in doPost()
|
D | TestRunRestServlet.java | 20 import com.android.vts.entity.TestEntity; 72 TestEntity.class, testName); in getLatestTestRunDetails()
|
D | DatastoreRestServlet.java | 29 import com.android.vts.entity.TestEntity; 147 List<TestEntity> testEntityList = new ArrayList<>(); in insertTestReport() 187 TestEntity testEntity = new TestEntity(testName); in insertTestReport() 443 com.googlecode.objectify.Key.create(TestEntity.class, test); in insertTestPlanReport()
|
D | UserFavoriteRestServlet.java | 19 import com.android.vts.entity.TestEntity; 66 Key addedTestKey = KeyFactory.createKey(TestEntity.KIND, test); in addFavorite()
|
/test/vti/dashboard/src/main/java/com/android/vts/util/ |
D | DatastoreHelper.java | 25 import com.android.vts.entity.TestEntity; 203 TestEntity datastoreTestEntity = TestEntity.fromEntity(datastoreEntity); in datastoreTransactionalRetryWithXG()
|
D | TestResults.java | 24 import com.android.vts.entity.TestEntity; 169 Key testKey = KeyFactory.createKey(TestEntity.KIND, this.testName); in processProfilingPoints() 190 Key testKey = KeyFactory.createKey(TestEntity.KIND, this.testName); in processDeviceInfos()
|
/test/vti/dashboard/src/test/java/com/android/vts/job/ |
D | VtsProfilingStatsJobServletTest.java | 28 import com.android.vts.entity.TestEntity; 94 Key testKey = KeyFactory.createKey(TestEntity.KIND, test); in createProfilingRun() 218 Key testKey = KeyFactory.createKey(TestEntity.KIND, test); in testNewSummary() 299 Key testKey = KeyFactory.createKey(TestEntity.KIND, test); in testUpdateSummary()
|
/test/vti/dashboard/src/main/java/com/android/vts/job/ |
D | VtsInactivityJobServlet.java | 19 import com.android.vts.entity.TestEntity; 162 Key testKey = KeyFactory.createKey(TestEntity.KIND, status.getTestName()); in doPost()
|
/test/vti/dashboard/src/main/java/com/android/vts/config/ |
D | ObjectifyListener.java | 34 import com.android.vts.entity.TestEntity; 104 ObjectifyService.register(TestEntity.class); in contextInitialized()
|