Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2037)

Unified Diff: dbus/message_unittest.cc

Issue 9363045: Revert 121920 - dbus: add ObjectPath type (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dbus/message.cc ('k') | dbus/mock_bus.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dbus/message_unittest.cc
===================================================================
--- dbus/message_unittest.cc (revision 121922)
+++ dbus/message_unittest.cc (working copy)
@@ -7,7 +7,6 @@
#include "base/basictypes.h"
#include "base/logging.h"
#include "base/memory/scoped_ptr.h"
-#include "dbus/object_path.h"
#include "dbus/test_proto.pb.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -51,7 +50,7 @@
writer.AppendUint64(7);
writer.AppendDouble(8.0);
writer.AppendString("string");
- writer.AppendObjectPath(dbus::ObjectPath("/object/path"));
+ writer.AppendObjectPath("/object/path");
uint8 byte_value = 0;
bool bool_value = false;
@@ -63,7 +62,7 @@
uint64 uint64_value = 0;
double double_value = 0;
std::string string_value;
- dbus::ObjectPath object_path_value;
+ std::string object_path_value;
dbus::MessageReader reader(message.get());
ASSERT_TRUE(reader.HasMoreData());
@@ -91,7 +90,7 @@
EXPECT_EQ(7U, uint64_value);
EXPECT_DOUBLE_EQ(8.0, double_value);
EXPECT_EQ("string", string_value);
- EXPECT_EQ(dbus::ObjectPath("/object/path"), object_path_value);
+ EXPECT_EQ("/object/path", object_path_value);
}
// Check all variant types can be properly written and read.
@@ -110,7 +109,7 @@
writer.AppendVariantOfUint64(7);
writer.AppendVariantOfDouble(8.0);
writer.AppendVariantOfString("string");
- writer.AppendVariantOfObjectPath(dbus::ObjectPath("/object/path"));
+ writer.AppendVariantOfObjectPath("/object/path");
uint8 byte_value = 0;
bool bool_value = false;
@@ -122,7 +121,7 @@
uint64 uint64_value = 0;
double double_value = 0;
std::string string_value;
- dbus::ObjectPath object_path_value;
+ std::string object_path_value;
dbus::MessageReader reader(message.get());
ASSERT_TRUE(reader.HasMoreData());
@@ -150,7 +149,7 @@
EXPECT_EQ(7U, uint64_value);
EXPECT_DOUBLE_EQ(8.0, double_value);
EXPECT_EQ("string", string_value);
- EXPECT_EQ(dbus::ObjectPath("/object/path"), object_path_value);
+ EXPECT_EQ("/object/path", object_path_value);
}
TEST(MessageTest, ArrayOfBytes) {
@@ -212,20 +211,20 @@
TEST(MessageTest, ArrayOfObjectPaths) {
scoped_ptr<dbus::Response> message(dbus::Response::CreateEmpty());
dbus::MessageWriter writer(message.get());
- std::vector<dbus::ObjectPath> object_paths;
- object_paths.push_back(dbus::ObjectPath("/object/path/1"));
- object_paths.push_back(dbus::ObjectPath("/object/path/2"));
- object_paths.push_back(dbus::ObjectPath("/object/path/3"));
+ std::vector<std::string> object_paths;
+ object_paths.push_back("/object/path/1");
+ object_paths.push_back("/object/path/2");
+ object_paths.push_back("/object/path/3");
writer.AppendArrayOfObjectPaths(object_paths);
dbus::MessageReader reader(message.get());
- std::vector<dbus::ObjectPath> output_object_paths;
+ std::vector<std::string> output_object_paths;
ASSERT_TRUE(reader.PopArrayOfObjectPaths(&output_object_paths));
ASSERT_FALSE(reader.HasMoreData());
ASSERT_EQ(3U, output_object_paths.size());
- EXPECT_EQ(dbus::ObjectPath("/object/path/1"), output_object_paths[0]);
- EXPECT_EQ(dbus::ObjectPath("/object/path/2"), output_object_paths[1]);
- EXPECT_EQ(dbus::ObjectPath("/object/path/3"), output_object_paths[2]);
+ EXPECT_EQ("/object/path/1", output_object_paths[0]);
+ EXPECT_EQ("/object/path/2", output_object_paths[1]);
+ EXPECT_EQ("/object/path/3", output_object_paths[2]);
}
TEST(MessageTest, ProtoBuf) {
@@ -409,7 +408,7 @@
EXPECT_EQ(dbus::Message::MESSAGE_METHOD_CALL, method_call.GetMessageType());
EXPECT_EQ("MESSAGE_METHOD_CALL", method_call.GetMessageTypeAsString());
method_call.SetDestination("com.example.Service");
- method_call.SetPath(dbus::ObjectPath("/com/example/Object"));
+ method_call.SetPath("/com/example/Object");
dbus::MessageWriter writer(&method_call);
writer.AppendString("payload");
@@ -441,7 +440,7 @@
EXPECT_TRUE(signal.raw_message() != NULL);
EXPECT_EQ(dbus::Message::MESSAGE_SIGNAL, signal.GetMessageType());
EXPECT_EQ("MESSAGE_SIGNAL", signal.GetMessageTypeAsString());
- signal.SetPath(dbus::ObjectPath("/com/example/Object"));
+ signal.SetPath("/com/example/Object");
dbus::MessageWriter writer(&signal);
writer.AppendString("payload");
@@ -514,7 +513,7 @@
scoped_ptr<dbus::Response> message(dbus::Response::CreateEmpty());
EXPECT_EQ("", message->GetDestination());
- EXPECT_EQ(dbus::ObjectPath(""), message->GetPath());
+ EXPECT_EQ("", message->GetPath());
EXPECT_EQ("", message->GetInterface());
EXPECT_EQ("", message->GetMember());
EXPECT_EQ("", message->GetErrorName());
@@ -523,7 +522,7 @@
EXPECT_EQ(0U, message->GetReplySerial());
message->SetDestination("org.chromium.destination");
- message->SetPath(dbus::ObjectPath("/org/chromium/path"));
+ message->SetPath("/org/chromium/path");
message->SetInterface("org.chromium.interface");
message->SetMember("member");
message->SetErrorName("org.chromium.error");
@@ -532,7 +531,7 @@
message->SetReplySerial(456);
EXPECT_EQ("org.chromium.destination", message->GetDestination());
- EXPECT_EQ(dbus::ObjectPath("/org/chromium/path"), message->GetPath());
+ EXPECT_EQ("/org/chromium/path", message->GetPath());
EXPECT_EQ("org.chromium.interface", message->GetInterface());
EXPECT_EQ("member", message->GetMember());
EXPECT_EQ("org.chromium.error", message->GetErrorName());
« no previous file with comments | « dbus/message.cc ('k') | dbus/mock_bus.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698