summaryrefslogtreecommitdiff
path: root/src/main/java/com/android/vts/entity/TestCoverageStatusEntity.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/android/vts/entity/TestCoverageStatusEntity.java')
-rw-r--r--src/main/java/com/android/vts/entity/TestCoverageStatusEntity.java278
1 files changed, 122 insertions, 156 deletions
diff --git a/src/main/java/com/android/vts/entity/TestCoverageStatusEntity.java b/src/main/java/com/android/vts/entity/TestCoverageStatusEntity.java
index bad5268..12572ce 100644
--- a/src/main/java/com/android/vts/entity/TestCoverageStatusEntity.java
+++ b/src/main/java/com/android/vts/entity/TestCoverageStatusEntity.java
@@ -41,162 +41,128 @@ import lombok.Setter;
/** Entity describing test coverage status. */
public class TestCoverageStatusEntity implements Serializable {
- protected static final Logger logger =
- Logger.getLogger(TestCoverageStatusEntity.class.getName());
-
- public static final String KIND = "TestCoverageStatus";
-
- // Property keys
- public static final String TOTAL_LINE_COUNT = "totalLineCount";
- public static final String COVERED_LINE_COUNT = "coveredLineCount";
- public static final String UPDATED_TIMESTAMP = "updatedTimestamp";
-
- /**
- * TestCoverageStatusEntity name field
- */
- @Id
- @Getter
- @Setter
- String testName;
-
- /**
- * TestCoverageStatusEntity coveredLineCount field
- */
- @Index
- @Getter
- @Setter
- long coveredLineCount;
-
- /**
- * TestCoverageStatusEntity totalLineCount field
- */
- @Index
- @Getter
- @Setter
- long totalLineCount;
-
- /**
- * TestCoverageStatusEntity updatedTimestamp field
- */
- @Index
- @Getter
- @Setter
- long updatedTimestamp;
-
- /**
- * TestCoverageStatusEntity updatedCoveredLineCount field
- */
- @Index
- @Getter
- @Setter
- long updatedCoveredLineCount;
-
- /**
- * TestCoverageStatusEntity updatedTotalLineCount field
- */
- @Index
- @Getter
- @Setter
- long updatedTotalLineCount;
-
- /**
- * TestCoverageStatusEntity updatedDate field
- */
- @Index
- @Getter
- @Setter
- Date updatedDate;
-
- /**
- * Create a TestCoverageStatusEntity object with status metadata.
- *
- * @param testName The name of the test.
- * @param timestamp The timestamp indicating the most recent test run event in the test state.
- * @param coveredLineCount The number of lines covered.
- * @param totalLineCount The total number of lines.
- */
- public TestCoverageStatusEntity(
- String testName, long timestamp, long coveredLineCount, long totalLineCount) {
- this.testName = testName;
- this.updatedTimestamp = timestamp;
- this.coveredLineCount = coveredLineCount;
- this.totalLineCount = totalLineCount;
- }
-
- /**
- * find TestCoverageStatus entity by ID
- */
- public static TestCoverageStatusEntity findById(String testName) {
- return ofy().load().type(TestCoverageStatusEntity.class).id(testName).now();
- }
-
- /**
- * Get all TestCoverageStatusEntity List
- */
- public static Map<String, TestCoverageStatusEntity> getTestCoverageStatusMap() {
- List<TestCoverageStatusEntity> testCoverageStatusEntityList = getAllTestCoverage();
-
- Map<String, TestCoverageStatusEntity> testCoverageStatusMap = testCoverageStatusEntityList
- .stream()
- .collect(
- Collectors.toMap(t -> t.getTestName(), t -> t)
- );
- return testCoverageStatusMap;
- }
-
- /**
- * Get all TestCoverageStatusEntity List
- */
- public static List<TestCoverageStatusEntity> getAllTestCoverage() {
- return ofy().load().type(TestCoverageStatusEntity.class).list();
- }
-
- /**
- * Saving function for the instance of this class
- */
- public void save() {
- this.updatedDate = new Date();
- ofy().save().entity(this).now();
- }
-
- public Entity toEntity() {
- Entity testEntity = new Entity(KIND, this.testName);
- testEntity.setProperty(UPDATED_TIMESTAMP, this.updatedTimestamp);
- testEntity.setProperty(COVERED_LINE_COUNT, this.coveredLineCount);
- testEntity.setProperty(TOTAL_LINE_COUNT, this.totalLineCount);
- return testEntity;
- }
-
- /**
- * Convert an Entity object to a TestCoverageStatusEntity.
- *
- * @param e The entity to process.
- * @return TestCoverageStatusEntity object with the properties from e processed, or null if
- * incompatible.
- */
- @SuppressWarnings("unchecked")
- public static TestCoverageStatusEntity fromEntity(Entity e) {
- if (!e.getKind().equals(KIND)
- || e.getKey().getName() == null
- || !e.hasProperty(UPDATED_TIMESTAMP)
- || !e.hasProperty(COVERED_LINE_COUNT)
- || !e.hasProperty(TOTAL_LINE_COUNT)) {
- logger.log(Level.WARNING, "Missing test attributes in entity: " + e.toString());
- return null;
+ protected static final Logger logger =
+ Logger.getLogger(TestCoverageStatusEntity.class.getName());
+
+ public static final String KIND = "TestCoverageStatus";
+
+ // Property keys
+ public static final String TOTAL_LINE_COUNT = "totalLineCount";
+ public static final String COVERED_LINE_COUNT = "coveredLineCount";
+ public static final String UPDATED_TIMESTAMP = "updatedTimestamp";
+
+ /** TestCoverageStatusEntity name field */
+ @Id @Getter @Setter String testName;
+
+ /** TestCoverageStatusEntity coveredLineCount field */
+ @Index @Getter @Setter long coveredLineCount;
+
+ /** TestCoverageStatusEntity totalLineCount field */
+ @Index @Getter @Setter long totalLineCount;
+
+ /** TestCoverageStatusEntity updatedTimestamp field */
+ @Index @Getter @Setter long updatedTimestamp;
+
+ /** TestCoverageStatusEntity updatedCoveredLineCount field */
+ @Index @Getter @Setter long updatedCoveredLineCount;
+
+ /** TestCoverageStatusEntity updatedTotalLineCount field */
+ @Index @Getter @Setter long updatedTotalLineCount;
+
+ /** TestCoverageStatusEntity updatedDate field */
+ @Index @Getter @Setter Date updatedDate;
+
+ /**
+ * Create a TestCoverageStatusEntity object with status metadata.
+ *
+ * @param testName The name of the test.
+ * @param timestamp The timestamp indicating the most recent test run event in the test state.
+ * @param coveredLineCount The number of lines covered.
+ * @param totalLineCount The total number of lines.
+ */
+ public TestCoverageStatusEntity(
+ String testName, long timestamp, long coveredLineCount, long totalLineCount) {
+ this.testName = testName;
+ this.updatedTimestamp = timestamp;
+ this.coveredLineCount = coveredLineCount;
+ this.totalLineCount = totalLineCount;
}
- String testName = e.getKey().getName();
- long timestamp = 0;
- long coveredLineCount = -1;
- long totalLineCount = -1;
- try {
- timestamp = (long) e.getProperty(UPDATED_TIMESTAMP);
- coveredLineCount = (Long) e.getProperty(COVERED_LINE_COUNT);
- totalLineCount = (Long) e.getProperty(TOTAL_LINE_COUNT);
- } catch (ClassCastException exception) {
- // Invalid contents or null values
- logger.log(Level.WARNING, "Error parsing test entity.", exception);
- return null;
+
+ /** find TestCoverageStatus entity by ID */
+ public static TestCoverageStatusEntity findById(String testName) {
+ return ofy().load().type(TestCoverageStatusEntity.class).id(testName).now();
+ }
+
+ /** Get all TestCoverageStatusEntity List */
+ public static Map<String, TestCoverageStatusEntity> getTestCoverageStatusMap() {
+ List<TestCoverageStatusEntity> testCoverageStatusEntityList = getAllTestCoverage();
+
+ Map<String, TestCoverageStatusEntity> testCoverageStatusMap =
+ testCoverageStatusEntityList.stream()
+ .collect(Collectors.toMap(t -> t.getTestName(), t -> t));
+ return testCoverageStatusMap;
+ }
+
+ /** Get all TestCoverageStatusEntity List */
+ public static List<TestCoverageStatusEntity> getAllTestCoverage() {
+ return ofy().load().type(TestCoverageStatusEntity.class).list();
+ }
+
+ /** TestRunEntity function to get the related TestRunEntity from id value */
+ public TestRunEntity getTestRunEntity() {
+ com.googlecode.objectify.Key testKey =
+ com.googlecode.objectify.Key.create(TestEntity.class, this.testName);
+ return ofy().load()
+ .type(TestRunEntity.class)
+ .parent(testKey)
+ .id(this.updatedTimestamp)
+ .now();
+ }
+
+ /** Saving function for the instance of this class */
+ public void save() {
+ this.updatedDate = new Date();
+ ofy().save().entity(this).now();
+ }
+
+ public Entity toEntity() {
+ Entity testEntity = new Entity(KIND, this.testName);
+ testEntity.setProperty(UPDATED_TIMESTAMP, this.updatedTimestamp);
+ testEntity.setProperty(COVERED_LINE_COUNT, this.coveredLineCount);
+ testEntity.setProperty(TOTAL_LINE_COUNT, this.totalLineCount);
+ return testEntity;
+ }
+
+ /**
+ * Convert an Entity object to a TestCoverageStatusEntity.
+ *
+ * @param e The entity to process.
+ * @return TestCoverageStatusEntity object with the properties from e processed, or null if
+ * incompatible.
+ */
+ @SuppressWarnings("unchecked")
+ public static TestCoverageStatusEntity fromEntity(Entity e) {
+ if (!e.getKind().equals(KIND)
+ || e.getKey().getName() == null
+ || !e.hasProperty(UPDATED_TIMESTAMP)
+ || !e.hasProperty(COVERED_LINE_COUNT)
+ || !e.hasProperty(TOTAL_LINE_COUNT)) {
+ logger.log(Level.WARNING, "Missing test attributes in entity: " + e.toString());
+ return null;
+ }
+ String testName = e.getKey().getName();
+ long timestamp = 0;
+ long coveredLineCount = -1;
+ long totalLineCount = -1;
+ try {
+ timestamp = (long) e.getProperty(UPDATED_TIMESTAMP);
+ coveredLineCount = (Long) e.getProperty(COVERED_LINE_COUNT);
+ totalLineCount = (Long) e.getProperty(TOTAL_LINE_COUNT);
+ } catch (ClassCastException exception) {
+ // Invalid contents or null values
+ logger.log(Level.WARNING, "Error parsing test entity.", exception);
+ return null;
+ }
+ return new TestCoverageStatusEntity(testName, timestamp, coveredLineCount, totalLineCount);
}
- return new TestCoverageStatusEntity(testName, timestamp, coveredLineCount, totalLineCount);
- }
}