]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/jaeger-client-cpp/src/jaegertracing/ReferenceTest.cpp
buildsys: switch source download to quincy
[ceph.git] / ceph / src / jaegertracing / jaeger-client-cpp / src / jaegertracing / ReferenceTest.cpp
1 /*
2 * Copyright (c) 2017 Uber Technologies, Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 #include "jaegertracing/Reference.h"
18 #include "jaegertracing/SpanContext.h"
19 #include "jaegertracing/thrift-gen/jaeger_types.h"
20 #include <gtest/gtest.h>
21 #include <stdexcept>
22
23 namespace jaegertracing {
24
25 TEST(Reference, testThriftConversion)
26 {
27 const SpanContext context;
28 const Reference childRef(context, Reference::Type::ChildOfRef);
29 thrift::SpanRef thriftChildRef;
30 ASSERT_NO_THROW(childRef.thrift(thriftChildRef));
31 const Reference followsFromRef(context, Reference::Type::FollowsFromRef);
32 thrift::SpanRef thriftFollowsFromRef;
33 ASSERT_NO_THROW(followsFromRef.thrift(thriftFollowsFromRef));
34 const Reference invalidRef(context, static_cast<Reference::Type>(-1));
35 thrift::SpanRef thriftInvalidRef;
36 ASSERT_THROW(invalidRef.thrift(thriftInvalidRef), std::invalid_argument);
37 }
38
39 } // namespace jaegertracing