blob: f007ea9cc55b53fcfe44790b095bdee16e98bba2 [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"
)
// clamshellLaunchForWordPress launches WordPress in clamshell mode.
var clamshellLaunchForWordPress = []testutil.TestCase{
{Name: "Launch app in Clamshell", Fn: launchAppForWordPress},
}
// touchviewLaunchForWordPress launches WordPress in tablet mode.
var touchviewLaunchForWordPress = []testutil.TestCase{
{Name: "Launch app in Touchview", Fn: launchAppForWordPress},
}
func init() {
testing.AddTest(&testing.Test{
Func: WordPress,
LacrosStatus: testing.LacrosVariantUnneeded,
Desc: "Functional test for WordPress that installs the app also verifies it is logged in and that the main page is open, checks WordPress 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: clamshellLaunchForWordPress,
CommonTests: testutil.ClamshellCommonTests,
},
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: touchviewLaunchForWordPress,
CommonTests: testutil.TouchviewCommonTests,
},
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: clamshellLaunchForWordPress,
CommonTests: testutil.ClamshellCommonTests,
},
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: touchviewLaunchForWordPress,
CommonTests: testutil.TouchviewCommonTests,
},
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: 10 * time.Minute,
VarDeps: []string{"arcappcompat.username", "arcappcompat.password"},
})
}
// WordPress test uses library for opting into the playstore and installing app.
// Checks WordPress correctly changes the window states in both clamshell and touchview mode.
func WordPress(ctx context.Context, s *testing.State) {
const (
appPkgName = "org.wordpress.android"
appActivity = ".ui.WPLaunchActivity"
)
testSet := s.Param().(testutil.TestParams)
testutil.RunTestCases(ctx, s, appPkgName, appActivity, testSet)
}
// launchAppForWordPress verifies WordPress is logged in and
// verify WordPress reached main activity page of the app.
func launchAppForWordPress(ctx context.Context, s *testing.State, tconn *chrome.TestConn, a *arc.ARC, d *ui.Device, appPkgName, appActivity string) {
const (
loginWithWordPressID = "org.wordpress.android:id/continue_with_wpcom_button"
continueWithGoogleID = "org.wordpress.android:id/continue_with_google"
accountID = "com.google.android.gms:id/account_display_name"
notNowText = "NOT RIGHT NOW"
readerText = "Reader"
)
// Click on login with Wordpress button.
loginButton := d.Object(ui.ID(loginWithWordPressID))
if err := loginButton.WaitForExists(ctx, testutil.ShortUITimeout); err != nil {
s.Fatal("loginButton doesn't exist: ", err)
} else if err := loginButton.Click(ctx); err != nil {
s.Fatal("Failed to click on loginButton: ", err)
}
// Click on google button.
googleButton := d.Object(ui.ID(continueWithGoogleID))
if err := googleButton.WaitForExists(ctx, testutil.DefaultUITimeout); err != nil {
s.Error("Google button doesn't exist: ", err)
} else if err := googleButton.Click(ctx); err != nil {
s.Fatal("Failed to click on google button: ", err)
}
// Click on account button.
accountButton := d.Object(ui.ID(accountID))
if err := accountButton.WaitForExists(ctx, testutil.DefaultUITimeout); err != nil {
s.Log("accountButton doesn't exist: ", err)
} else if err := accountButton.Click(ctx); err != nil {
s.Fatal("Failed to click on account button: ", err)
}
notNowButton := d.Object(ui.Text(notNowText))
navReaderLabel := d.Object(ui.Text(readerText))
if err := notNowButton.WaitForExists(ctx, testutil.DefaultUITimeout); err != nil {
s.Log("Not now button doesn't exist: ", err)
}
// Click on notNow button until navReaderLabel exists
if err := testing.Poll(ctx, func(ctx context.Context) error {
if err := navReaderLabel.Exists(ctx); err != nil {
notNowButton.Click(ctx)
return err
}
return nil
}, &testing.PollOptions{Timeout: testutil.ShortUITimeout}); err != nil {
s.Error("Reader label doesn't exist: ", 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)
}
}