aboutsummaryrefslogtreecommitdiffhomepage
path: root/platform_tools/android/apps/skqp/src/main/java/org/skia/skqp/SkQP.java
blob: 8ced43dbe20168d5ca0ae3d2a28e24106c9594e7 (plain)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
 * Copyright 2017 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

package org.skia.skqp;

import android.content.Context;
import android.content.res.AssetManager;
import android.util.Log;
import java.io.File;
import java.io.IOException;

public class SkQP {
    protected native void nInit(AssetManager assetManager, String dataDir);
    protected native float nExecuteGM(int gm, int backend) throws SkQPException;
    protected native String[] nExecuteUnitTest(int test);
    protected native void nMakeReport();

    protected String[] mGMs;
    protected String[] mBackends;
    protected String[] mUnitTests;

    protected static final String kSkiaGM = "SkiaGM_";
    protected static final String kSkiaUnitTests = "Skia_UnitTests";
    protected static final String LOG_PREFIX = "org.skis.skqp";

    static {
      System.loadLibrary("skqp_app");
    }

    protected void runTests(Context context, String outputDirPath) {
        Log.w(LOG_PREFIX, "Output Dir: " + outputDirPath);
        File outputDir = new File(outputDirPath);
        if (outputDir.exists()) {
          try {
              deleteDirectoryContents(outputDir);
          } catch (IOException e) {
              Log.w(LOG_PREFIX, "DeleteDirectoryContents: " + e.getMessage());
          }
        }

        // Note: nInit will initialize the mGMs, mBackends and mUnitTests fields.
        AssetManager assetManager = context.getResources().getAssets();
        this.nInit(assetManager, outputDirPath);

        for (int backend = 0; backend < mBackends.length; backend++) {
          String classname = kSkiaGM + mBackends[backend];
          for (int gm = 0; gm < mGMs.length; gm++) {
              String testName = kSkiaGM + mBackends[backend] + "_" +mGMs[gm];
              float value = java.lang.Float.MAX_VALUE;
              String error = null;
              Log.w(LOG_PREFIX, "Running: " + testName);
              try {
                  value = this.nExecuteGM(gm, backend);
              } catch (SkQPException exept) {
                  error = exept.getMessage();
              }
              if (error != null) {
                // Record error message and carry on.
              } else if (value != 0) {
                // Record failure and carry on.
                  // SkQPRunner.Fail(desc, notifier, String.format(
                  //             "Image mismatch: max channel diff = %f", value));
              } else {
                // Record success for this test.
              }
          }
      }
      for (int unitTest = 0; unitTest < mUnitTests.length; unitTest++) {
          String testName = kSkiaUnitTests + "_" + mUnitTests[unitTest];
          Log.w(LOG_PREFIX, "Running: " + testName);
          String[] errors = this.nExecuteUnitTest(unitTest);
          if (errors != null && errors.length > 0) {
              for (String error : errors) {
                // Record unit test failures.
              }
          } else {
            // Record success.
          }
      }
      nMakeReport();
    }

    protected static void deleteDirectoryContents(File f) throws IOException {
      for (File s : f.listFiles()) {
          if (s.isDirectory()) {
              deleteDirectoryContents(s);
          }
          s.delete();
      }
    }
}