blob: a85e348f818f65725944f1e12afb2bfbae36ee63 [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 arc
import (
"context"
"time"
"chromiumos/tast/local/arc"
"chromiumos/tast/local/bundles/cros/arc/storage"
"chromiumos/tast/local/chrome/ui/filesapp"
"chromiumos/tast/testing"
)
const (
downloadURI = "content://org.chromium.arc.file_system.fileprovider/download/storage.txt"
)
func init() {
testing.AddTest(&testing.Test{
Func: DownloadsFolder,
Desc: "Android app can read files on Downloads folder via FilesApp",
Contacts: []string{
"cherieccy@google.com",
"arc-storage@google.com",
},
Attr: []string{"group:mainline", "informational"},
SoftwareDeps: []string{"android_p", "chrome", "chrome_internal", "drivefs"},
Timeout: 5 * time.Minute,
Pre: arc.Booted(),
// TODO(b/147620213): Add similar test for ARCVM.
})
}
func DownloadsFolder(ctx context.Context, s *testing.State) {
a := s.PreValue().(arc.PreData).ARC
cr := s.PreValue().(arc.PreData).Chrome
expectations := []storage.Expectation{
{LabelID: storage.ActionID, Value: storage.ExpectedAction},
{LabelID: storage.URIID, Value: downloadURI},
{LabelID: storage.FileContentID, Value: storage.ExpectedFileContent}}
dir := storage.Directory{Path: filesapp.DownloadPath, Name: "Downloads", Title: "Files - Downloads"}
storage.TestOpenWithAndroidApp(ctx, s, a, cr, dir, expectations)
}