Use the GTest portability headers
[folly.git] / folly / test / MemcpyTest.cpp
1 /*
2  * Copyright 2016 Facebook, 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 <folly/Portability.h>
18
19 #include <folly/portability/GTest.h>
20
21 namespace {
22
23 constexpr size_t kSize = 4096 * 4;
24 char src[kSize];
25 char dst[kSize];
26
27 void init() {
28   for (size_t i = 0; i < kSize; ++i) {
29     src[i] = static_cast<char>(i);
30     dst[i] = static_cast<char>(255 - i);
31   }
32 }
33 }
34
35 TEST(memcpy, zero_len) UBSAN_DISABLE("nonnull-attribute") {
36   // If length is 0, we shouldn't touch any memory.  So this should
37   // not crash.
38   char* srcNull = nullptr;
39   char* dstNull = nullptr;
40   memcpy(dstNull, srcNull, 0);
41 }
42
43 // Test copy `len' bytes and verify that exactly `len' bytes are copied.
44 void testLen(size_t len) {
45   if (len > kSize) {
46     return;
47   }
48   init();
49   memcpy(dst, src, len);
50   for (size_t i = 0; i < len; ++i) {
51     EXPECT_EQ(src[i], static_cast<char>(i));
52     EXPECT_EQ(src[i], dst[i]);
53   }
54   if (len < kSize) {
55     EXPECT_EQ(src[len], static_cast<char>(len));
56     EXPECT_EQ(dst[len], static_cast<char>(255 - len));
57   }
58 }
59
60 TEST(memcpy, small) {
61   for (size_t len = 1; len < 8; ++len) {
62     testLen(len);
63   }
64 }
65
66 TEST(memcpy, main) {
67   for (size_t len = 8; len < 128; ++len) {
68     testLen(len);
69   }
70
71   for (size_t len = 128; len < kSize; len += 128) {
72     testLen(len);
73   }
74
75   for (size_t len = 128; len < kSize; len += 73) {
76     testLen(len);
77   }
78 }