blob: d9616d32cd24e9429635d23bd42fcb645d3b60ef [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"
)
// clamshellLaunchForShowtime launches Showtime in clamshell mode.
var clamshellLaunchForShowtime = []testutil.TestCase{
{Name: "Launch app in Clamshell", Fn: launchAppForShowtime},
}
// touchviewLaunchForShowtime launches Showtime in tablet mode.
var touchviewLaunchForShowtime = []testutil.TestCase{
{Name: "Launch app in Touchview", Fn: launchAppForShowtime},
}
// clamshellAppSpecificTestsForShowtime are placed here.
var clamshellAppSpecificTestsForShowtime = []testutil.TestCase{
{Name: "Clamshell: Video Playback", Fn: testutil.TouchAndPlayVideo},
}
// touchviewAppSpecificTestsForShowtime are placed here.
var touchviewAppSpecificTestsForShowtime = []testutil.TestCase{
{Name: "Touchview: Video Playback", Fn: testutil.TouchAndPlayVideo},
}
func init() {
testing.AddTest(&testing.Test{
Func: Showtime,
LacrosStatus: testing.LacrosVariantUnneeded,
Desc: "Functional test for Showtime that installs the app also verifies it is logged in and that the main page is open, checks Showtime correctly changes the window state in both clamshell and touchview mode",
Contacts: []string{"cros-appcompat-test-team@google.com"},
Attr: []string{"group:appcompat"},
SoftwareDeps: []string{"chrome"},
Params: []testing.Param{{
Name: "clamshell_mode",
Val: testutil.TestParams{
LaunchTests: clamshellLaunchForShowtime,
CommonTests: testutil.ClamshellCommonTests,
AppSpecificTests: clamshellAppSpecificTestsForShowtime,
},
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.AppCompatBootedUsingTestAccountPool,
}, {
Name: "tablet_mode",
Val: testutil.TestParams{
LaunchTests: touchviewLaunchForShowtime,
CommonTests: testutil.TouchviewCommonTests,
AppSpecificTests: touchviewAppSpecificTestsForShowtime,
},
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.AppCompatBootedInTabletModeUsingTestAccountPool,
}, {
Name: "vm_clamshell_mode",
Val: testutil.TestParams{
LaunchTests: clamshellLaunchForShowtime,
CommonTests: testutil.ClamshellCommonTests,
AppSpecificTests: clamshellAppSpecificTestsForShowtime,
},
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.AppCompatBootedUsingTestAccountPool,
}, {
Name: "vm_tablet_mode",
Val: testutil.TestParams{
LaunchTests: touchviewLaunchForShowtime,
CommonTests: testutil.TouchviewCommonTests,
AppSpecificTests: touchviewAppSpecificTestsForShowtime,
},
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.AppCompatBootedInTabletModeUsingTestAccountPool,
}},
Timeout: 10 * time.Minute,
Vars: []string{"arcappcompat.gaiaPoolDefault"},
VarDeps: []string{"arcappcompat.Showtime.emailid", "arcappcompat.Showtime.password"},
})
}
// Showtime test uses library for opting into the playstore and installing app.
// Checks Showtime correctly changes the window states in both clamshell and touchview mode.
func Showtime(ctx context.Context, s *testing.State) {
const (
appPkgName = "com.showtime.standalone"
appActivity = "com.showtime.showtimeanytime.activities.IntroActivity"
)
testSet := s.Param().(testutil.TestParams)
testutil.RunTestCases(ctx, s, appPkgName, appActivity, testSet)
}
// launchAppForShowtime verifies Showtime is logged in and
// verify Showtime reached main activity page of the app.
func launchAppForShowtime(ctx context.Context, s *testing.State, tconn *chrome.TestConn, a *arc.ARC, d *ui.Device, appPkgName, appActivity string) {
const (
signInID = "com.showtime.standalone:id/loginButton"
enterEmailID = "com.showtime.standalone:id/emailLogin"
enterPasswordID = "com.showtime.standalone:id/passwordLogin"
logInText = "SIGN IN"
logInID = "com.showtime.standalone:id/signInButton"
notNowButtonID = "android:id/autofill_save_no"
homeIconID = "com.showtime.standalone:id/text"
homeIconText = "HOME"
)
// Click on sign in button.
signInButton := d.Object(ui.ID(signInID))
if err := signInButton.WaitForExists(ctx, testutil.DefaultUITimeout); err != nil {
s.Error("Sign in button doesn't exist: ", err)
} else if err := signInButton.Click(ctx); err != nil {
s.Fatal("Failed to click on Sign in button: ", err)
}
// Enter email address.
ShowtimeEmailID := s.RequiredVar("arcappcompat.Showtime.emailid")
enterEmailAddress := d.Object(ui.ID(enterEmailID))
if err := enterEmailAddress.WaitForExists(ctx, testutil.DefaultUITimeout); err != nil {
s.Error("EnterEmailAddress doesn't exist: ", err)
} else if err := enterEmailAddress.Click(ctx); err != nil {
s.Fatal("Failed to click on enterEmailAddress: ", err)
} else if err := enterEmailAddress.SetText(ctx, ShowtimeEmailID); err != nil {
s.Fatal("Failed to enterEmailAddress: ", err)
}
// Enter password.
ShowtimePassword := s.RequiredVar("arcappcompat.Showtime.password")
enterPassword := d.Object(ui.ID(enterPasswordID))
if err := enterPassword.WaitForExists(ctx, testutil.DefaultUITimeout); err != nil {
s.Error("EnterPassword doesn't exist: ", err)
} else if err := enterPassword.Click(ctx); err != nil {
s.Fatal("Failed to click on enterPassword: ", err)
} else if err := enterPassword.SetText(ctx, ShowtimePassword); err != nil {
s.Fatal("Failed to enterPassword: ", err)
}
// Click on log in button
logInButton := d.Object(ui.ID(logInID), ui.Text(logInText))
if err := logInButton.WaitForExists(ctx, testutil.DefaultUITimeout); err != nil {
s.Error("LogIn button doesn't exist: ", err)
} else if err := logInButton.Click(ctx); err != nil {
s.Fatal("Failed to click on LogIn button: ", err)
}
notNowButton := d.Object(ui.ID(notNowButtonID))
if err := notNowButton.WaitForExists(ctx, testutil.DefaultUITimeout); err != nil {
s.Log("notNowButton button doesn't exist: ", err)
} else if err := notNowButton.Click(ctx); err != nil {
s.Fatal("Failed to click on notNowButton button: ", 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)
}
}