From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jan Viktorin Subject: [PATCH v1 03/10] app/test: add functions to create files from resources Date: Fri, 6 May 2016 12:48:33 +0200 Message-ID: <1462531720-26217-4-git-send-email-viktorin@rehivetech.com> References: <1462531720-26217-1-git-send-email-viktorin@rehivetech.com> Cc: Jan Viktorin , Bruce Richardson , Thomas Monjalon , David Marchand To: dev@dpdk.org Return-path: Received: from wes1-so2.wedos.net (wes1-so2.wedos.net [46.28.106.16]) by dpdk.org (Postfix) with ESMTP id EDBFE28F3 for ; Fri, 6 May 2016 12:50:49 +0200 (CEST) In-Reply-To: <1462531720-26217-1-git-send-email-viktorin@rehivetech.com> In-Reply-To: <1461935496-20367-1-git-send-email-viktorin@rehivetech.com> References: <1461935496-20367-1-git-send-email-viktorin@rehivetech.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" A resource can be written into the target filesystem by calling resource_fwrite or resource_fwrite_file. Such file can be created before a test is started and removed after the test finishes. Signed-off-by: Jan Viktorin --- app/test/resource.c | 35 +++++++++++++++++++++++++++++++++++ app/test/resource.h | 4 ++++ app/test/test_resource.c | 10 ++++++++++ 3 files changed, 49 insertions(+) diff --git a/app/test/resource.c b/app/test/resource.c index 50a4510..a11c86e 100644 --- a/app/test/resource.c +++ b/app/test/resource.c @@ -31,6 +31,7 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include #include #include #include @@ -55,6 +56,40 @@ const struct resource *resource_find(const char *name) return NULL; } +int resource_fwrite(const struct resource *r, FILE *f) +{ + const size_t goal = resource_size(r); + size_t total = 0; + + while (total < goal) { + size_t wlen = fwrite(r->beg + total, 1, goal - total, f); + if (wlen == 0) { + perror(__func__); + return -1; + } + + total += wlen; + } + + return 0; +} + +int resource_fwrite_file(const struct resource *r, const char *fname) +{ + FILE *f; + int ret; + + f = fopen(fname, "w"); + if (f == NULL) { + perror(__func__); + return -1; + } + + ret = resource_fwrite(r, f); + fclose(f); + return ret; +} + void __resource_register(struct resource *r) { TAILQ_INSERT_TAIL(&resource_list, r, next); diff --git a/app/test/resource.h b/app/test/resource.h index 84ee6b5..9f85c16 100644 --- a/app/test/resource.h +++ b/app/test/resource.h @@ -35,6 +35,7 @@ #define _RESOURCE_H_ #include +#include #include #include @@ -57,6 +58,9 @@ static inline size_t resource_size(const struct resource *r) const struct resource *resource_find(const char *name); +int resource_fwrite(const struct resource *r, FILE *f); +int resource_fwrite_file(const struct resource *r, const char *fname); + void __resource_register(struct resource *r); #define REGISTER_LINKED_RESOURCE(_n) \ diff --git a/app/test/test_resource.c b/app/test/test_resource.c index 7752522..148964e 100644 --- a/app/test/test_resource.c +++ b/app/test/test_resource.c @@ -65,6 +65,7 @@ REGISTER_LINKED_RESOURCE(test_resource_c); static int test_resource_c(void) { const struct resource *r; + FILE *f; r = resource_find("test_resource_c"); TEST_ASSERT_NOT_NULL(r, "No test_resource_c found"); @@ -72,6 +73,15 @@ static int test_resource_c(void) "Found resource %s, expected test_resource_c", r->name); + TEST_ASSERT_SUCCESS(resource_fwrite_file(r, "test_resource.c"), + "Failed to to write file %s", r->name); + + f = fopen("test_resource.c", "r"); + TEST_ASSERT_NOT_NULL(f, + "Missing extracted file resource.c"); + fclose(f); + remove("test_resource.c"); + return 0; } -- 2.8.0