blob: 443fe17e1bbb8948c357951fe9feadb73d3c475a [file] [log] [blame]
// Copyright 2020 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Package arcappcompat will have tast tests for android apps on Chromebooks.
package arcappcompat
import (
"context"
"time"
"chromiumos/tast/common/android/ui"
"chromiumos/tast/local/arc"
"chromiumos/tast/local/bundles/cros/arcappcompat/pre"
"chromiumos/tast/local/bundles/cros/arcappcompat/testutil"
"chromiumos/tast/local/chrome"
"chromiumos/tast/testing"
"chromiumos/tast/testing/hwdep"
)
// clamshellLaunchForAdobeAcrobatReader launches AdobeAcrobatReader in clamshell mode.
var clamshellLaunchForAdobeAcrobatReader = []testutil.TestCase{
{Name: "Launch app in Clamshell", Fn: launchAppForAdobeAcrobatReader},
}
// touchviewLaunchForAdobeAcrobatReader launches AdobeAcrobatReader in tablet mode.
var touchviewLaunchForAdobeAcrobatReader = []testutil.TestCase{
{Name: "Launch app in Touchview", Fn: launchAppForAdobeAcrobatReader},
}
func init() {
testing.AddTest(&testing.Test{
Func: AdobeAcrobatReader,
LacrosStatus: testing.LacrosVariantUnneeded,
Desc: "Functional test for AdobeAcrobatReader that installs the app also verifies it is logged in and that the main page is open, checks AdobeAcrobatReader correctly changes the window state in both clamshell and touchview mode",
Contacts: []string{"mthiyagarajan@chromium.org", "cros-appcompat-test-team@google.com"},
Attr: []string{"group:appcompat", "appcompat_smoke"},
SoftwareDeps: []string{"chrome"},
Params: []testing.Param{{
Name: "clamshell_mode",
Val: testutil.TestParams{
LaunchTests: clamshellLaunchForAdobeAcrobatReader,
CommonTests: testutil.ClamshellSmokeTests,
},
ExtraSoftwareDeps: []string{"android_p"},
// TODO(b/189704585): Remove hwdep.SkipOnModel once the solution is found.
// Skip on tablet only models.
ExtraHardwareDeps: hwdep.D(hwdep.SkipOnModel(testutil.TabletOnlyModels...)),
Pre: pre.AppCompatBooted,
}, {
Name: "tablet_mode",
Val: testutil.TestParams{
LaunchTests: touchviewLaunchForAdobeAcrobatReader,
CommonTests: testutil.TouchviewSmokeTests,
},
ExtraSoftwareDeps: []string{"android_p"},
// TODO(b/189704585): Remove hwdep.SkipOnModel once the solution is found.
// Skip on clamshell only models.
ExtraHardwareDeps: hwdep.D(hwdep.TouchScreen(), hwdep.SkipOnModel(testutil.ClamshellOnlyModels...)),
Pre: pre.AppCompatBootedInTabletMode,
}, {
Name: "vm_clamshell_mode",
Val: testutil.TestParams{
LaunchTests: clamshellLaunchForAdobeAcrobatReader,
CommonTests: testutil.ClamshellSmokeTests,
},
ExtraSoftwareDeps: []string{"android_vm"},
// TODO(b/189704585): Remove hwdep.SkipOnModel once the solution is found.
// Skip on tablet only models.
ExtraHardwareDeps: hwdep.D(hwdep.SkipOnModel(testutil.TabletOnlyModels...)),
Pre: pre.AppCompatBooted,
}, {
Name: "vm_tablet_mode",
Val: testutil.TestParams{
LaunchTests: touchviewLaunchForAdobeAcrobatReader,
CommonTests: testutil.TouchviewSmokeTests,
},
ExtraSoftwareDeps: []string{"android_vm"},
// TODO(b/189704585): Remove hwdep.SkipOnModel once the solution is found.
// Skip on clamshell only models.
ExtraHardwareDeps: hwdep.D(hwdep.TouchScreen(), hwdep.SkipOnModel(testutil.ClamshellOnlyModels...)),
Pre: pre.AppCompatBootedInTabletMode,
}},
Timeout: 30 * time.Minute,
VarDeps: []string{"arcappcompat.username", "arcappcompat.password"},
})
}
// AdobeAcrobatReader test uses library for opting into the playstore and installing app.
// Checks AdobeAcrobatReader correctly changes the window states in both clamshell and touchview mode.
func AdobeAcrobatReader(ctx context.Context, s *testing.State) {
const (
appPkgName = "com.adobe.reader"
appActivity = ".AdobeReader"
)
testSet := s.Param().(testutil.TestParams)
testutil.RunTestCases(ctx, s, appPkgName, appActivity, testSet)
}
// launchAppForAdobeAcrobatReader verify app is logged in and
// verify app reached main activity page of the app.
func launchAppForAdobeAcrobatReader(ctx context.Context, s *testing.State, tconn *chrome.TestConn, a *arc.ARC, d *ui.Device, appPkgName, appActivity string) {
const (
continueButtonText = "Continue"
continueButtonID = "com.adobe.reader:id/continue_button"
closeClassName = "android.widget.ImageButton"
closeDes = "Close tour"
gmailAccountPageID = "com.google.android.gms:id/account_picker_container"
signInButtonText = "Sign in with Google"
userButtonClassName = "android.widget.TextView"
)
// Click on sign in button.
signInButton := d.Object(ui.ClassName(userButtonClassName), ui.Text(signInButtonText))
if err := signInButton.WaitForExists(ctx, testutil.DefaultUITimeout); err != nil {
s.Error("signInButton doesn't exists: ", err)
} else if err := signInButton.Click(ctx); err != nil {
s.Fatal("Failed to click on signInButton: ", err)
}
// Wait for Gmail account page.
gmailAccountPage := d.Object(ui.ID(gmailAccountPageID))
if err := gmailAccountPage.WaitForExists(ctx, testutil.LongUITimeout); err != nil {
s.Log("gmailAccountPage doesn't exists: ", err)
}
// For selecting Gmail account
if err := d.PressKeyCode(ctx, ui.KEYCODE_TAB, 0); err != nil {
s.Log("Failed to enter KEYCODE_TAB: ", err)
} else {
s.Log("Entered KEYCODE_TAB")
}
if err := d.PressKeyCode(ctx, ui.KEYCODE_ENTER, 0); err != nil {
s.Log("Failed to enter KEYCODE_ENTER: ", err)
} else {
s.Log("Entered KEYCODE_ENTER")
}
// Click on continue button.
continueButton := d.Object(ui.ID(continueButtonID), ui.Text(continueButtonText))
if err := continueButton.WaitForExists(ctx, testutil.DefaultUITimeout); err != nil {
s.Log("continueButton doesn't exists: ", err)
} else if err := continueButton.Click(ctx); err != nil {
s.Fatal("Failed to click on continueButton: ", err)
}
// Click on close button.
closeButton := d.Object(ui.ClassName(closeClassName), ui.Description(closeDes))
if err := closeButton.WaitForExists(ctx, testutil.DefaultUITimeout); err != nil {
s.Log("closeButton doesn't exists: ", err)
} else if err := closeButton.Click(ctx); err != nil {
s.Fatal("Failed to click on closeButton: ", err)
}
testutil.HandleDialogBoxes(ctx, s, d, appPkgName)
// Check for launch verifier.
launchVerifier := d.Object(ui.PackageName(appPkgName))
if err := launchVerifier.WaitForExists(ctx, testutil.LongUITimeout); err != nil {
testutil.DetectAndHandleCloseCrashOrAppNotResponding(ctx, s, d)
s.Fatal("launchVerifier doesn't exists: ", err)
}
}