| 1 |
/*************************************************************************** |
/* SPDX-License-Identifier: GPL-3.0-or-later */ |
| 2 |
test_section_list.c - description |
/* |
| 3 |
------------------- |
* test_section_list |
| 4 |
Copyright : (C) 2004-2025 by Leaflet |
* - tester for data models and basic operations of section and article |
| 5 |
Email : leaflet@leafok.com |
* |
| 6 |
***************************************************************************/ |
* Copyright (C) 2004-2025 Leaflet <leaflet@leafok.com> |
| 7 |
|
*/ |
| 8 |
/*************************************************************************** |
|
| 9 |
* * |
#ifdef HAVE_CONFIG_H |
| 10 |
* This program is free software; you can redistribute it and/or modify * |
#include "config.h" |
| 11 |
* it under the terms of the GNU General Public License as published by * |
#endif |
|
* the Free Software Foundation; either version 3 of the License, or * |
|
|
* (at your option) any later version. * |
|
|
* * |
|
|
***************************************************************************/ |
|
| 12 |
|
|
| 13 |
#include "bbs.h" |
#include "bbs.h" |
| 14 |
#include "log.h" |
#include "log.h" |
| 15 |
#include "section_list.h" |
#include "section_list.h" |
| 16 |
#include "trie_dict.h" |
#include "trie_dict.h" |
| 17 |
|
#include "user_list.h" |
| 18 |
#include <errno.h> |
#include <errno.h> |
| 19 |
#include <stdio.h> |
#include <stdio.h> |
| 20 |
#include <unistd.h> |
#include <unistd.h> |
| 21 |
|
|
| 22 |
#define ARTICLE_BLOCK_SHM_FILE "~article_block_shm.dat" |
static const char ARTICLE_BLOCK_SHM_FILE[] = "~article_block_shm.dat"; |
| 23 |
#define SECTION_LIST_SHM_FILE "~section_list_shm.dat" |
static const char SECTION_LIST_SHM_FILE[] = "~section_list_shm.dat"; |
| 24 |
#define TRIE_DICT_SHM_FILE "~trie_dict_shm.dat" |
static const char TRIE_DICT_SHM_FILE[] = "~trie_dict_shm.dat"; |
| 25 |
|
static const char USER_LIST_SHM_FILE[] = "~user_list_shm.dat"; |
| 26 |
|
|
| 27 |
const char *sname[] = { |
const char *sname[] = { |
| 28 |
"Test", |
"Test", |
| 72 |
log_error_redir(STDERR_FILENO); |
log_error_redir(STDERR_FILENO); |
| 73 |
|
|
| 74 |
// - 1 to make blocks allocated is less than required, to trigger error handling |
// - 1 to make blocks allocated is less than required, to trigger error handling |
| 75 |
block_count = BBS_article_limit_per_section * BBS_max_section / ARTICLE_PER_BLOCK; |
block_count = BBS_article_limit_per_section * BBS_max_section / BBS_article_count_per_block; |
| 76 |
|
|
| 77 |
if ((fp = fopen(ARTICLE_BLOCK_SHM_FILE, "w")) == NULL) |
if ((fp = fopen(ARTICLE_BLOCK_SHM_FILE, "w")) == NULL) |
| 78 |
{ |
{ |
| 95 |
} |
} |
| 96 |
fclose(fp); |
fclose(fp); |
| 97 |
|
|
| 98 |
|
if ((fp = fopen(USER_LIST_SHM_FILE, "w")) == NULL) |
| 99 |
|
{ |
| 100 |
|
log_error("fopen(%s) error\n", USER_LIST_SHM_FILE); |
| 101 |
|
return -1; |
| 102 |
|
} |
| 103 |
|
fclose(fp); |
| 104 |
|
|
| 105 |
if (trie_dict_init(TRIE_DICT_SHM_FILE, TRIE_NODE_PER_POOL) < 0) |
if (trie_dict_init(TRIE_DICT_SHM_FILE, TRIE_NODE_PER_POOL) < 0) |
| 106 |
{ |
{ |
| 107 |
printf("trie_dict_init failed\n"); |
printf("trie_dict_init failed\n"); |
| 120 |
return -2; |
return -2; |
| 121 |
} |
} |
| 122 |
|
|
| 123 |
|
// Load user_list and online_user_list |
| 124 |
|
if (user_list_pool_init(USER_LIST_SHM_FILE) < 0) |
| 125 |
|
{ |
| 126 |
|
log_error("user_list_pool_init() error\n"); |
| 127 |
|
return -2; |
| 128 |
|
} |
| 129 |
|
|
| 130 |
printf("Testing #1 ...\n"); |
printf("Testing #1 ...\n"); |
| 131 |
|
|
| 132 |
last_aid = 0; |
last_aid = 0; |
| 558 |
(p_section[i]->visible_article_count % BBS_article_limit_per_page ? 1 : 0) != |
(p_section[i]->visible_article_count % BBS_article_limit_per_page ? 1 : 0) != |
| 559 |
p_section[i]->page_count) |
p_section[i]->page_count) |
| 560 |
{ |
{ |
| 561 |
printf("Inconsistent page count in section %d offset %d, %d != %d, " |
printf("#1 Inconsistent page count in section %d offset %d, %d != %d, " |
| 562 |
"visible_article_count = %d, last_page_visible_count = %d\n", |
"visible_article_count = %d, last_page_visible_count = %d\n", |
| 563 |
i, j, |
i, j, |
| 564 |
p_section[i]->visible_article_count / BBS_article_limit_per_page + |
p_section[i]->visible_article_count / BBS_article_limit_per_page + |
| 641 |
(p_section[i]->visible_article_count % BBS_article_limit_per_page ? 1 : 0) != |
(p_section[i]->visible_article_count % BBS_article_limit_per_page ? 1 : 0) != |
| 642 |
p_section[i]->page_count) |
p_section[i]->page_count) |
| 643 |
{ |
{ |
| 644 |
printf("Inconsistent page count in section %d offset %d, %d != %d, " |
printf("#2 Inconsistent page count in section %d offset %d, %d != %d, " |
| 645 |
"visible_article_count = %d, last_page_visible_count = %d\n", |
"visible_article_count = %d, last_page_visible_count = %d\n", |
| 646 |
i, j, |
i, j, |
| 647 |
p_section[i]->visible_article_count / BBS_article_limit_per_page + |
p_section[i]->visible_article_count / BBS_article_limit_per_page + |
| 710 |
(p_section[i]->visible_article_count % BBS_article_limit_per_page ? 1 : 0) != |
(p_section[i]->visible_article_count % BBS_article_limit_per_page ? 1 : 0) != |
| 711 |
p_section[i]->page_count) |
p_section[i]->page_count) |
| 712 |
{ |
{ |
| 713 |
printf("Inconsistent page count in section %d offset %d, %d != %d, " |
printf("#3 Inconsistent page count in section %d offset %d, %d != %d, " |
| 714 |
"visible_article_count = %d, last_page_visible_count = %d\n", |
"visible_article_count = %d, last_page_visible_count = %d\n", |
| 715 |
i, j, |
i, j, |
| 716 |
p_section[i]->visible_article_count / BBS_article_limit_per_page + |
p_section[i]->visible_article_count / BBS_article_limit_per_page + |
| 984 |
printf("Press ENTER to exit..."); |
printf("Press ENTER to exit..."); |
| 985 |
getchar(); |
getchar(); |
| 986 |
|
|
| 987 |
|
user_list_pool_cleanup(); |
| 988 |
section_list_cleanup(); |
section_list_cleanup(); |
| 989 |
article_block_cleanup(); |
article_block_cleanup(); |
| 990 |
trie_dict_cleanup(); |
trie_dict_cleanup(); |
| 991 |
|
|
| 992 |
|
if (unlink(USER_LIST_SHM_FILE) < 0) |
| 993 |
|
{ |
| 994 |
|
log_error("unlink(%s) error\n", USER_LIST_SHM_FILE); |
| 995 |
|
return -1; |
| 996 |
|
} |
| 997 |
|
|
| 998 |
if (unlink(TRIE_DICT_SHM_FILE) < 0) |
if (unlink(TRIE_DICT_SHM_FILE) < 0) |
| 999 |
{ |
{ |
| 1000 |
log_error("unlink(%s) error\n", TRIE_DICT_SHM_FILE); |
log_error("unlink(%s) error\n", TRIE_DICT_SHM_FILE); |