aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-osgi-testrunner/src/main/java/com/yahoo/vespa/testrunner/TestRunner.java
blob: c38226f3c27e9724f1b7495e978e12e5e834863d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.testrunner;

import java.util.Collection;
import java.util.concurrent.CompletableFuture;
import java.util.logging.LogRecord;

/**
 * @author jonmv
 * @author mortent
 */
public interface TestRunner {

    Collection<LogRecord> getLog(long after);

    Status getStatus();

    CompletableFuture<?> test(Suite suite, byte[] config);

    default TestReport getReport() { return null; }

    /** Test run status, ordered from most to least specific; the most specific result is chosen when combining multiple. */
    enum Status {

        /** Tests are currently running. */
        RUNNING,

        /** Framework exception; never got to run the tests, or failed parsing their output. */
        ERROR,

        /** Test code failed. */
        FAILURE,

        /** Tests should be re-run at a later time. */
        INCONCLUSIVE,

        /** All tests passed. */
        SUCCESS,

        /** No tests found. */
        NO_TESTS,

        /** Tests have not yet started. */
        NOT_STARTED

        }

    enum Suite {
        SYSTEM_TEST, STAGING_SETUP_TEST, STAGING_TEST, PRODUCTION_TEST
    }

}