summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync/glue/autofill_model_associator_unittest.cc
blob: a76f6347bf513ed452ad440fcf7d3e7dd0ab3666 (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
// Copyright (c) 2010 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.

#include "base/string16.h"
#include "base/utf_string_conversions.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "chrome/browser/sync/glue/autofill_model_associator.h"

using browser_sync::AutofillModelAssociator;

class AutofillModelAssociatorTest : public testing::Test {
};

TEST_F(AutofillModelAssociatorTest, KeyToTag) {
  EXPECT_EQ("autofill_entry|foo|bar",
            AutofillModelAssociator::KeyToTag(UTF8ToUTF16("foo"),
                                              UTF8ToUTF16("bar")));
  EXPECT_EQ("autofill_entry|%7C|%7C",
            AutofillModelAssociator::KeyToTag(UTF8ToUTF16("|"),
                                              UTF8ToUTF16("|")));
  EXPECT_EQ("autofill_entry|%7C|",
            AutofillModelAssociator::KeyToTag(UTF8ToUTF16("|"),
                                              UTF8ToUTF16("")));
  EXPECT_EQ("autofill_entry||%7C",
            AutofillModelAssociator::KeyToTag(UTF8ToUTF16(""),
                                              UTF8ToUTF16("|")));
}