summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/signin/e2e_tests/test_accounts_util.h
blob: 4f73dd76d3289605157bb206ce269118a97eacce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_SIGNIN_E2E_TESTS_TEST_ACCOUNTS_UTIL_H_
#define CHROME_BROWSER_SIGNIN_E2E_TESTS_TEST_ACCOUNTS_UTIL_H_

#include <map>
#include <string>

namespace base {
class FilePath;
}

namespace signin {
namespace test {

struct TestAccount {
  std::string user;
  std::string password;
  TestAccount() = default;
  TestAccount(const std::string& user, const std::string& password) {
    this->user = user;
    this->password = password;
  }
};

class TestAccountsUtil {
 public:
  TestAccountsUtil();

  TestAccountsUtil(const TestAccountsUtil&) = delete;
  TestAccountsUtil& operator=(const TestAccountsUtil&) = delete;

  virtual ~TestAccountsUtil();
  bool Init(const base::FilePath& config_path);
  bool GetAccount(const std::string& name, TestAccount& out_account) const;

 private:
  std::map<std::string, TestAccount> all_accounts_;
};

}  // namespace test
}  // namespace signin

#endif  // CHROME_BROWSER_SIGNIN_E2E_TESTS_TEST_ACCOUNTS_UTIL_H_