* Copyright (c) 2022 Huawei Device Co., Ltd.
* 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 <signal.h>
#include <stdlib.h>
#include <string.h>
#include "test.h"
#define BUF_SIZE (13)
void handler(int sig)
{
exit(t_status);
}
* @tc.name : stpcpy_0100
* @tc.desc : copy a string returning a pointer to its end
* @tc.level : Level 0
*/
void stpcpy_0100(void)
{
char buf[BUF_SIZE];
memset(buf, 'A', sizeof(buf));
char *src = "Hello";
char *dest = (char *)buf;
strcpy(dest, src);
if (strcmp(src, buf)) {
t_error("%s failed: src = %s, buf = %s\n", __func__, src, buf);
return;
}
for (int i = strlen(src) + 1; i < BUF_SIZE; i++) {
if (buf[i] != 'A') {
t_error("%s failed: buf[%d] = %c\n", __func__, i, buf[i]);
return;
}
}
}
* @tc.name : stpcpy_0200
* @tc.desc : copy an empty string returning a pointer to its end
* @tc.level : Level 1
*/
void stpcpy_0200(void)
{
char buf[1];
char *src = "";
char *dest = (char *)buf;
strcpy(dest, src);
if (strcmp(src, buf)) {
t_error("%s failed: src = %s, buf = %s\n", __func__, src, buf);
return;
}
if (buf[0] != '\0') {
t_error("%s failed: buf[0] = %c\n", __func__, buf[0]);
return;
}
}
* @tc.name : stpcpy_0300
* @tc.desc : copy a string with the same size
* @tc.level : Level 1
*/
void stpcpy_0300(void)
{
char buf[BUF_SIZE];
memset(buf, 'A', sizeof(buf));
char *src = "Hello world!";
char *dest = (char *)buf;
strcpy(dest, src);
if (strcmp(src, buf)) {
t_error("%s failed: src = %s, buf = %s\n", __func__, src, buf);
return;
}
}
* @tc.name : stpcpy_0400
* @tc.desc : copy a string to a NULL pointer
* @tc.level : Level 2
*/
void stpcpy_0400(void)
{
signal(SIGSEGV, handler);
char *src = "Hello world!";
strcpy(NULL, src);
}
int main(int argc, char *argv[])
{
stpcpy_0100();
stpcpy_0200();
stpcpy_0300();
stpcpy_0400();
return t_status;
}