| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228 |
- // Copyright 2016 The go-ethereum Authors
- // This file is part of the go-ethereum library.
- //
- // The go-ethereum library is free software: you can redistribute it and/or modify
- // it under the terms of the GNU Lesser General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // The go-ethereum library is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU Lesser General Public License for more details.
- //
- // You should have received a copy of the GNU Lesser General Public License
- // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
- package geth
- import (
- "io/ioutil"
- "os"
- "os/exec"
- "path/filepath"
- "runtime"
- "testing"
- "time"
- "github.com/ethereum/go-ethereum/internal/build"
- )
- // androidTestClass is a Java class to do some lightweight tests against the Android
- // bindings. The goal is not to test each individual functionality, rather just to
- // catch breaking API and/or implementation changes.
- const androidTestClass = `
- package go;
- import android.test.InstrumentationTestCase;
- import android.test.MoreAsserts;
- import org.ethereum.geth.*;
- public class AndroidTest extends InstrumentationTestCase {
- public AndroidTest() {}
- public void testAccountManagement() {
- // Create an encrypted keystore manager with light crypto parameters.
- AccountManager am = new AccountManager(getInstrumentation().getContext().getFilesDir() + "/keystore", Geth.LightScryptN, Geth.LightScryptP);
- try {
- // Create a new account with the specified encryption passphrase.
- Account newAcc = am.newAccount("Creation password");
- // Export the newly created account with a different passphrase. The returned
- // data from this method invocation is a JSON encoded, encrypted key-file.
- byte[] jsonAcc = am.exportKey(newAcc, "Creation password", "Export password");
- // Update the passphrase on the account created above inside the local keystore.
- am.updateAccount(newAcc, "Creation password", "Update password");
- // Delete the account updated above from the local keystore.
- am.deleteAccount(newAcc, "Update password");
- // Import back the account we've exported (and then deleted) above with yet
- // again a fresh passphrase.
- Account impAcc = am.importKey(jsonAcc, "Export password", "Import password");
- // Create a new account to sign transactions with
- Account signer = am.newAccount("Signer password");
- Hash txHash = new Hash("0x0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef");
- // Sign a transaction with a single authorization
- byte[] signature = am.signPassphrase(signer, "Signer password", txHash.getBytes());
- // Sign a transaction with multiple manually cancelled authorizations
- am.unlock(signer, "Signer password");
- signature = am.sign(signer.getAddress(), txHash.getBytes());
- am.lock(signer.getAddress());
- // Sign a transaction with multiple automatically cancelled authorizations
- am.timedUnlock(signer, "Signer password", 1000000000);
- signature = am.sign(signer.getAddress(), txHash.getBytes());
- } catch (Exception e) {
- fail(e.toString());
- }
- }
- public void testInprocNode() {
- Context ctx = new Context();
- try {
- // Start up a new inprocess node
- Node node = new Node(getInstrumentation().getContext().getFilesDir() + "/.ethereum", new NodeConfig());
- node.start();
- // Retrieve some data via function calls (we don't really care about the results)
- NodeInfo info = node.getNodeInfo();
- info.getName();
- info.getListenerAddress();
- info.getProtocols();
- // Retrieve some data via the APIs (we don't really care about the results)
- EthereumClient ec = node.getEthereumClient();
- ec.getBlockByNumber(ctx, -1).getNumber();
- NewHeadHandler handler = new NewHeadHandler() {
- @Override public void onError(String error) {}
- @Override public void onNewHead(final Header header) {}
- };
- ec.subscribeNewHead(ctx, handler, 16);
- } catch (Exception e) {
- fail(e.toString());
- }
- }
- }
- `
- // TestAndroid runs the Android java test class specified above.
- //
- // This requires the gradle command in PATH and the Android SDK whose path is available
- // through ANDROID_HOME environment variable. To successfully run the tests, an Android
- // device must also be available with debugging enabled.
- //
- // This method has been adapted from golang.org/x/mobile/bind/java/seq_test.go/runTest
- func TestAndroid(t *testing.T) {
- // Skip tests on Windows altogether
- if runtime.GOOS == "windows" {
- t.Skip("cannot test Android bindings on Windows, skipping")
- }
- // Make sure all the Android tools are installed
- if _, err := exec.Command("which", "gradle").CombinedOutput(); err != nil {
- t.Skip("command gradle not found, skipping")
- }
- if sdk := os.Getenv("ANDROID_HOME"); sdk == "" {
- t.Skip("ANDROID_HOME environment var not set, skipping")
- }
- if _, err := exec.Command("which", "gomobile").CombinedOutput(); err != nil {
- t.Log("gomobile missing, installing it...")
- if _, err := exec.Command("go", "install", "golang.org/x/mobile/cmd/gomobile").CombinedOutput(); err != nil {
- t.Fatalf("install failed: %v", err)
- }
- t.Log("initializing gomobile...")
- start := time.Now()
- if _, err := exec.Command("gomobile", "init").CombinedOutput(); err != nil {
- t.Fatalf("initialization failed: %v", err)
- }
- t.Logf("initialization took %v", time.Since(start))
- }
- // Create and switch to a temporary workspace
- workspace, err := ioutil.TempDir("", "geth-android-")
- if err != nil {
- t.Fatalf("failed to create temporary workspace: %v", err)
- }
- defer os.RemoveAll(workspace)
- pwd, err := os.Getwd()
- if err != nil {
- t.Fatalf("failed to get current working directory: %v", err)
- }
- if err := os.Chdir(workspace); err != nil {
- t.Fatalf("failed to switch to temporary workspace: %v", err)
- }
- defer os.Chdir(pwd)
- // Create the skeleton of the Android project
- for _, dir := range []string{"src/main", "src/androidTest/java/org/ethereum/gethtest", "libs"} {
- err = os.MkdirAll(dir, os.ModePerm)
- if err != nil {
- t.Fatal(err)
- }
- }
- // Generate the mobile bindings for Geth and add the tester class
- gobind := exec.Command("gomobile", "bind", "-javapkg", "org.ethereum", "github.com/ethereum/go-ethereum/mobile")
- if output, err := gobind.CombinedOutput(); err != nil {
- t.Logf("%s", output)
- t.Fatalf("failed to run gomobile bind: %v", err)
- }
- build.CopyFile(filepath.Join("libs", "geth.aar"), "geth.aar", os.ModePerm)
- if err = ioutil.WriteFile(filepath.Join("src", "androidTest", "java", "org", "ethereum", "gethtest", "AndroidTest.java"), []byte(androidTestClass), os.ModePerm); err != nil {
- t.Fatalf("failed to write Android test class: %v", err)
- }
- // Finish creating the project and run the tests via gradle
- if err = ioutil.WriteFile(filepath.Join("src", "main", "AndroidManifest.xml"), []byte(androidManifest), os.ModePerm); err != nil {
- t.Fatalf("failed to write Android manifest: %v", err)
- }
- if err = ioutil.WriteFile("build.gradle", []byte(gradleConfig), os.ModePerm); err != nil {
- t.Fatalf("failed to write gradle build file: %v", err)
- }
- if output, err := exec.Command("gradle", "connectedAndroidTest").CombinedOutput(); err != nil {
- t.Logf("%s", output)
- t.Errorf("failed to run gradle test: %v", err)
- }
- }
- const androidManifest = `<?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="org.ethereum.gethtest"
- android:versionCode="1"
- android:versionName="1.0">
- <uses-permission android:name="android.permission.INTERNET" />
- </manifest>`
- const gradleConfig = `buildscript {
- repositories {
- jcenter()
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:1.5.0'
- }
- }
- allprojects {
- repositories { jcenter() }
- }
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 'android-19'
- buildToolsVersion '21.1.2'
- defaultConfig { minSdkVersion 15 }
- }
- repositories {
- flatDir { dirs 'libs' }
- }
- dependencies {
- compile 'com.android.support:appcompat-v7:19.0.0'
- compile(name: "geth", ext: "aar")
- }
- `
|