2016-04-19 17:03:02 +05:30
|
|
|
/*
|
|
|
|
* libprocps - Library to read proc filesystem
|
|
|
|
* Tests for pids library calls
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2020-07-05 16:48:36 +05:30
|
|
|
#include <proc/pids.h>
|
2016-04-19 17:03:02 +05:30
|
|
|
#include "tests.h"
|
|
|
|
|
2016-07-21 10:30:00 +05:30
|
|
|
enum pids_item items[] = { PIDS_ID_PID, PIDS_ID_PID };
|
2016-05-22 17:42:54 +05:30
|
|
|
|
2016-04-19 17:03:02 +05:30
|
|
|
int check_pids_new_nullinfo(void *data)
|
|
|
|
{
|
|
|
|
testname = "procps_pids_new() info=NULL returns -EINVAL";
|
2016-05-22 17:42:54 +05:30
|
|
|
return (procps_pids_new(NULL, items, 0) == -EINVAL);
|
2016-04-19 17:03:02 +05:30
|
|
|
}
|
|
|
|
|
2016-05-22 17:42:54 +05:30
|
|
|
int check_pids_new_toomany(void *data)
|
2016-04-19 17:03:02 +05:30
|
|
|
{
|
2016-07-21 10:30:00 +05:30
|
|
|
struct pids_info *info;
|
2016-05-22 17:42:54 +05:30
|
|
|
testname = "procps_pids_new() too many items returns -EINVAL";
|
|
|
|
return (procps_pids_new(&info, items, 1) == -EINVAL);
|
2016-04-19 17:03:02 +05:30
|
|
|
}
|
|
|
|
|
2016-05-22 17:42:54 +05:30
|
|
|
int check_pids_new_and_unref(void *data)
|
2016-04-19 17:03:02 +05:30
|
|
|
{
|
2016-07-21 10:30:00 +05:30
|
|
|
struct pids_info *info = NULL;
|
2016-05-22 17:42:54 +05:30
|
|
|
testname = "procps_pids new then unref";
|
|
|
|
return ( (procps_pids_new(&info, items, 2) == 0) &&
|
|
|
|
(procps_pids_unref(&info) == 0) &&
|
|
|
|
info == NULL);
|
2016-04-19 17:03:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
TestFunction test_funcs[] = {
|
|
|
|
check_pids_new_nullinfo,
|
2016-05-22 17:42:54 +05:30
|
|
|
// skipped, ask Jim check_pids_new_toomany,
|
|
|
|
check_pids_new_and_unref,
|
2016-04-19 17:03:02 +05:30
|
|
|
NULL };
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
return run_tests(test_funcs, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|