Upstream version 8.36.169.0
[platform/framework/web/crosswalk.git] / src / xwalk / test / android / core / javatests / src / org / xwalk / core / xwview / test / GetXWalkVersionTest.java
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Copyright (c) 2014 Intel Corporation. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file.
5
6 package org.xwalk.core.xwview.test;
7
8 import android.test.suitebuilder.annotation.SmallTest;
9
10 import org.chromium.base.test.util.Feature;
11
12 import java.util.regex.Matcher;
13 import java.util.regex.Pattern;
14
15 /**
16  * Test suite for getXWalkVersion().
17  */
18 public class GetXWalkVersionTest extends XWalkViewTestBase {
19
20     @Override
21     public void setUp() throws Exception {
22         super.setUp();
23     }
24
25     @SmallTest
26     @Feature({"GetXWalkVersion"})
27     public void testGetXWalkVersion() throws Throwable {
28         String version = getXWalkVersionOnUiThread();
29         Pattern pattern = Pattern.compile("\\d+\\.\\d+\\.\\d+\\.\\d+");
30         Matcher matcher = pattern.matcher(version);
31         assertTrue("The Crosswalk version is invalid.", matcher.find());
32     }
33 }