Home | History | Annotate | Download | only in ftp

Lines Matching defs:entry2

52   FtpAuthCache::Entry* entry2 = cache.Lookup(origin2);
53 ASSERT_TRUE(entry2);
54 EXPECT_EQ(origin2, entry2->origin);
55 EXPECT_EQ(kUsername2, entry2->credentials.username());
56 EXPECT_EQ(kPassword2, entry2->credentials.password());
110 FtpAuthCache::Entry* entry2 = cache.Lookup(GURL("ftp://HoSt:21"));
111 ASSERT_TRUE(entry2);
112 EXPECT_EQ(GURL("ftp://host"), entry2->origin);
113 EXPECT_EQ(kOthername, entry2->credentials.username());
114 EXPECT_EQ(kOtherword, entry2->credentials.password());