/* * Copyright (c) 2010 Your File System Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR `AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /*! * Common functions for building a configuration directory */ #include #include #include #include #include "common.h" static FILE * openConfigFile(char *dirname, char *filename) { char *path = NULL; FILE *file; if (asprintf(&path, "%s/%s", dirname, filename) == -1) return NULL; file = fopen(path, "w"); free(path); return file; } static void unlinkConfigFile(char *dirname, char *filename) { char *path; if (asprintf(&path, "%s/%s", dirname, filename) != -1) { unlink(path); free(path); } } /*! * Build a test configuration directory, containing a CellServDB and ThisCell * file for the "example.org" cell * * @return * The path to the configuration directory. This should be freed by the caller * using free() * */ char * buildTestConfig(void) { char *dir = NULL; FILE *file; if (asprintf(&dir, "%s/afs_XXXXXX", gettmpdir()) == -1) goto fail; if (mkdtemp(dir) == NULL) goto fail; /* Create a CellServDB */ file = openConfigFile(dir, "CellServDB"); fprintf(file, ">example.org # An example cell\n"); fprintf(file, "127.0.0.1 #test.example.org\n"); fclose(file); /* Create a ThisCell file */ file = openConfigFile(dir, "ThisCell"); fprintf(file, "example.org"); fclose(file); return dir; fail: if (dir) free(dir); return NULL; } /*! * Delete at test configuration directory */ void unlinkTestConfig(char *dir) { unlinkConfigFile(dir, "KeyFile"); unlinkConfigFile(dir, "CellServDB"); unlinkConfigFile(dir, "ThisCell"); unlinkConfigFile(dir, "UserList"); rmdir(dir); }