Home | History | Annotate | Download | only in drive

Lines Matching refs:key3

77   const std::string key3 = "efgh";
112 entry3.set_resource_id(key3);
116 // key3 found.
117 EXPECT_TRUE(storage_->GetEntry(key3, &result));
118 EXPECT_EQ(key3, storage_->GetChild(key2, name3));
126 EXPECT_EQ(key3, storage_->GetChild(key1, name3));
129 EXPECT_TRUE(storage_->RemoveEntry(key3));
130 EXPECT_FALSE(storage_->GetEntry(key3, &result));
386 const std::string key3 = "boo";
413 // Add parent-child relationship between key2 and key3.
414 PutChild(key2, name3, key3);
415 EXPECT_FALSE(CheckValidity()); // key3 is not stored in the storage.
417 // Put entry with key3 under key2.
418 entry.set_resource_id(key3);
427 PutChild(key2, name2, key3);
430 // Fix up the relationship between key2 and key3.
433 PutChild(key2, name3, key3);
447 // Remove key3.
450 EXPECT_TRUE(storage_->RemoveEntry(key3));