77 lines
2.2 KiB
C++
77 lines
2.2 KiB
C++
/*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright ownership.
|
|
* The ASF licenses this file to You under the Apache License, Version 2.0
|
|
* (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include "CCommon.h"
|
|
#include "CMQException.h"
|
|
#include "CMessage.h"
|
|
#include "CProducer.h"
|
|
#include "CSendResult.h"
|
|
#include "TopicConfig.h"
|
|
#include "gmock/gmock.h"
|
|
#include "gtest/gtest.h"
|
|
#include "url.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
#include "CCommon.h"
|
|
#include "CMQException.h"
|
|
#include "CMessage.h"
|
|
#include "CProducer.h"
|
|
#include "CSendResult.h"
|
|
|
|
using namespace std;
|
|
using rocketmq::TopicConfig;
|
|
using rocketmq::Url;
|
|
using ::testing::InitGoogleMock;
|
|
using ::testing::InitGoogleTest;
|
|
using testing::Return;
|
|
|
|
class MockTopicConfig : public TopicConfig {
|
|
public:
|
|
MOCK_METHOD0(getReadQueueNums, int());
|
|
};
|
|
|
|
TEST(Url, Url) {
|
|
Url url_s("172.17.0.2:9876");
|
|
EXPECT_EQ(url_s.protocol_, "172.17.0.2:9876");
|
|
|
|
Url url_z("https://www.aliyun.com/RocketMQ?5.0");
|
|
EXPECT_EQ(url_z.protocol_, "https");
|
|
EXPECT_EQ(url_z.host_, "www.aliyun.com");
|
|
EXPECT_EQ(url_z.port_, "80");
|
|
EXPECT_EQ(url_z.path_, "/RocketMQ");
|
|
EXPECT_EQ(url_z.query_, "5.0");
|
|
|
|
Url url_path("https://www.aliyun.com:9876/RocketMQ?5.0");
|
|
EXPECT_EQ(url_path.port_, "9876");
|
|
MockTopicConfig topicConfig;
|
|
EXPECT_CALL(topicConfig, getReadQueueNums()).WillRepeatedly(Return(-1));
|
|
int nums = topicConfig.getReadQueueNums();
|
|
cout << nums << endl;
|
|
}
|
|
|
|
int main(int argc, char* argv[]) {
|
|
InitGoogleMock(&argc, argv);
|
|
testing::GTEST_FLAG(filter) = "Url.Url";
|
|
int itestts = RUN_ALL_TESTS();
|
|
;
|
|
return itestts;
|
|
}
|