1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-27 10:25:13 +03:00

lvm2api: Make the vg_list_* functions work with lvmetad (+ test).

This commit is contained in:
Petr Rockai 2013-07-11 08:01:04 +02:00
parent 618d13705c
commit 8e4a3dd9cb
4 changed files with 94 additions and 0 deletions

View File

@ -18,6 +18,7 @@
#include "archiver.h"
#include "locking.h"
#include "lvmcache.h"
#include "lvmetad.h"
#include "lvm_misc.h"
#include "lvm2app.h"
@ -361,11 +362,13 @@ int lvm_vg_set_property(const vg_t vg, const char *name,
struct dm_list *lvm_list_vg_names(lvm_t libh)
{
lvmetad_vg_list_to_lvmcache((struct cmd_context *)libh);
return get_vgnames((struct cmd_context *)libh, 0);
}
struct dm_list *lvm_list_vg_uuids(lvm_t libh)
{
lvmetad_vg_list_to_lvmcache((struct cmd_context *)libh);
return get_vgids((struct cmd_context *)libh, 0);
}

View File

@ -22,6 +22,7 @@ SOURCES = test.c
TARGETS += \
lvtest.t \
vglist.t \
percent.t \
pe_start.t \
thin_percent.t \
@ -29,6 +30,7 @@ TARGETS += \
SOURCES2 = \
lvtest.c \
vglist.c \
percent.c \
pe_start.c \
thin_percent.c \

74
test/api/vglist.c Normal file
View File

@ -0,0 +1,74 @@
/*
* Copyright (C) 2009 Red Hat, Inc. All rights reserved.
*
* This file is part of LVM2.
*
* This copyrighted material is made available to anyone wishing to use,
* modify, copy, or redistribute it subject to the terms and conditions
* of the GNU Lesser General Public License v.2.1.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <stdio.h>
#include <unistd.h>
#include <inttypes.h>
#include <assert.h>
#include "lvm2app.h"
lvm_t handle;
vg_t vg;
static void start() {
handle = lvm_init(NULL);
if (!handle) {
fprintf(stderr, "Unable to lvm_init\n");
abort();
}
}
static void done(int ok) {
if (handle && lvm_errno(handle)) {
fprintf(stderr, "LVM Error: %s\n", lvm_errmsg(handle));
ok = 0;
}
if (handle)
lvm_quit(handle);
if (!ok)
abort();
}
int main(int argc, char *argv[])
{
int status;
if (argc != 3)
abort();
lvm_str_list_t *str;
int i = 0;
start();
struct dm_list *vgnames = lvm_list_vg_names(handle);
dm_list_iterate_items(str, vgnames) {
assert(++i <= 1);
assert(!strcmp(str->str, argv[1]));
}
assert(i == 1);
done(1);
i = 0;
start();
struct dm_list *vgids = lvm_list_vg_uuids(handle);
dm_list_iterate_items(str, vgids) {
assert(++i <= 1);
assert(!strcmp(str->str, argv[2]));
}
assert(i == 1);
done(1);
return 0;
}

15
test/api/vglist.sh Normal file
View File

@ -0,0 +1,15 @@
#!/bin/sh
# Copyright (C) 2013 Red Hat, Inc. All rights reserved.
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions
# of the GNU General Public License v.2.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
. lib/test
aux prepare_vg 2
aux apitest vglist $vg `get vg_field $vg vg_uuid | sed -e s,-,,g`