blob: 5b166b175f09b5bb03762cf1553be4c179a4c2b5 [file] [log] [blame]
// Copyright 2014 Google Inc. All Rights Reserved.
//
// Licensed 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 "syzygy/kasko/user_agent.h"
#include "gtest/gtest.h"
namespace kasko {
TEST(UserAgentTest, BasicTest) {
UserAgent user_agent(L"product", L"1.0");
user_agent.set_os_version(11, 13);
user_agent.set_winhttp_version(L"super_duper");
user_agent.set_architecture(UserAgent::WOW64);
EXPECT_EQ(L"product/1.0 (Windows NT 11.13; WOW64) WinHTTP/super_duper",
user_agent.AsString());
}
} // namespace kasko