mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
Moved unit tests from gtest to ctest.
This commit is contained in:
parent
ac715924ae
commit
fc51b4d7b1
@ -14,40 +14,36 @@ endif
|
||||
# Directory variables.
|
||||
INC_DIR = ../../include
|
||||
LIB_DIR = ../../src$
|
||||
GTEST_DIR = /usr/lib
|
||||
|
||||
# Conditional includes for testing.
|
||||
TESTING = -DTESTING
|
||||
|
||||
# Flags passed to the preprocessor.
|
||||
CPPFLAGS += $(TESTING)
|
||||
|
||||
# Flags passed to the C++ compiler.
|
||||
CXXFLAGS += -g -Wall -Wextra
|
||||
# Flags passed to the C compiler.
|
||||
CFLAGS += -DTESTING -DCOLOR_OK -g -Wall -Wextra -Wno-unused-parameter
|
||||
|
||||
|
||||
# All tests produced by this Makefile.
|
||||
TESTS = test_all
|
||||
|
||||
# Objects to link for test_all executable.
|
||||
SRCS = $(wildcard utility/test*.cpp)
|
||||
SRCS += $(wildcard xmlwriter/test*.cpp)
|
||||
SRCS += $(wildcard worksheet/test*.cpp)
|
||||
SRCS += $(wildcard sst/test*.cpp)
|
||||
SRCS += $(wildcard workbook/test*.cpp)
|
||||
SRCS += $(wildcard app/test*.cpp)
|
||||
SRCS += $(wildcard content_types/test*.cpp)
|
||||
SRCS += $(wildcard core/test*.cpp)
|
||||
SRCS += $(wildcard relationships/test*.cpp)
|
||||
SRCS += $(wildcard format/test*.cpp)
|
||||
SRCS += $(wildcard styles/test*.cpp)
|
||||
SRCS = $(wildcard utility/test*.c)
|
||||
SRCS += $(wildcard xmlwriter/test*.c)
|
||||
SRCS += $(wildcard worksheet/test*.c)
|
||||
SRCS += $(wildcard sst/test*.c)
|
||||
SRCS += $(wildcard workbook/test*.c)
|
||||
SRCS += $(wildcard app/test*.c)
|
||||
SRCS += $(wildcard content_types/test*.c)
|
||||
SRCS += $(wildcard core/test*.c)
|
||||
SRCS += $(wildcard relationships/test*.c)
|
||||
SRCS += $(wildcard format/test*.c)
|
||||
SRCS += $(wildcard styles/test*.c)
|
||||
|
||||
SRCS -= $(wildcard utility/test_all.c)
|
||||
SRCS -= $(wildcard styles/test_all.c)
|
||||
# End of SRCS
|
||||
|
||||
OBJS = $(patsubst %.cpp,%.o,$(SRCS))
|
||||
OBJS = $(patsubst %.c,%.o,$(SRCS))
|
||||
|
||||
# Libs to link.
|
||||
LIBS_A = $(LIB_DIR)/libxlsxwriter_test.a $(GTEST_DIR)/libgtest.a $(GTEST_DIR)/libgtest_main.a
|
||||
LIBS_O = -lpthread -lz
|
||||
LIBS_A = $(LIB_DIR)/libxlsxwriter_test.a
|
||||
LIBS_O = -lz
|
||||
# End of LIBS
|
||||
|
||||
# House-keeping build targets.
|
||||
@ -83,8 +79,8 @@ clean :
|
||||
#
|
||||
# Builds the tests.
|
||||
#
|
||||
test_all : $(OBJS) $(LIBS_A)
|
||||
$(Q)$(CXX) $(CPPFLAGS) $(CXXFLAGS) -I$(INC_DIR) -o $@ $^ $(LIBS_O)
|
||||
test_all : test_all.o $(OBJS) $(LIBS_A)
|
||||
$(Q)$(CC) $(CFLAGS) -I$(INC_DIR) -o $@ $^ $(LIBS_O)
|
||||
|
||||
|
||||
###############################################################################
|
||||
|
@ -14,43 +14,36 @@ endif
|
||||
# Directory variables.
|
||||
INC_DIR = ../../../include
|
||||
LIB_DIR = ../../../src
|
||||
GTEST_DIR = /usr/lib
|
||||
|
||||
# Conditional includes for testing.
|
||||
TESTING = -DTESTING
|
||||
|
||||
# Flags passed to the preprocessor.
|
||||
CPPFLAGS += $(TESTING)
|
||||
|
||||
# Flags passed to the C++ compiler.
|
||||
CXXFLAGS += -g -Wall -Wextra
|
||||
# Flags passed to the C compiler.
|
||||
CFLAGS += -DTESTING -DCOLOR_OK -g -Wall -Wextra -Wno-unused-parameter
|
||||
|
||||
# Make targets and objects.
|
||||
SRCS = $(wildcard test*.cpp)
|
||||
TESTS = $(patsubst %.cpp,%,$(SRCS))
|
||||
OBJS = $(patsubst %.cpp,%.o,$(SRCS))
|
||||
SRCS = $(wildcard test*.c)
|
||||
TESTS = $(patsubst %.c,%,$(SRCS))
|
||||
OBJS = $(patsubst %.c,%.o,$(SRCS))
|
||||
|
||||
# Libs to link.
|
||||
LIBS_A = $(LIB_DIR)/libxlsxwriter_test.a $(GTEST_DIR)/libgtest.a $(GTEST_DIR)/libgtest_main.a
|
||||
LIBS_O = -lpthread -lz
|
||||
LIBS_A = $(LIB_DIR)/libxlsxwriter_test.a
|
||||
LIBS_O = -lz
|
||||
|
||||
# Make all the individual tests.
|
||||
all : $(TESTS)
|
||||
|
||||
# Clean all the things!
|
||||
clean :
|
||||
$(Q)rm -f $(TESTS) test_all test*.o
|
||||
$(Q)rm -f $(TESTS) test*.o
|
||||
|
||||
# Build the testscases.
|
||||
test_%.o: test_%.cpp
|
||||
$(Q)$(CXX) -I$(INC_DIR) $(CPPFLAGS) $(CXXFLAGS) -c $<
|
||||
%.o: %.c
|
||||
$(Q)$(CC) -I$(INC_DIR) $(CFLAGS) -c $<
|
||||
|
||||
test_%: test_%.o $(LIBS_A)
|
||||
$(Q)$(CXX) $(CPPFLAGS) $(CXXFLAGS) -o $@ $^ $(LIBS_O)
|
||||
test_%: main.o test_%.o $(LIBS_A)
|
||||
$(Q)$(CC) $(CFLAGS) -o $@ $^ $(LIBS_O)
|
||||
|
||||
# Link all the tests into one test executable.
|
||||
test_all : $(OBJS) $(LIBS_A)
|
||||
$(Q)$(CXX) $(CPPFLAGS) $(CXXFLAGS) -o $@ $^ $(LIBS_O)
|
||||
test_all : main.o $(OBJS) $(LIBS_A)
|
||||
$(Q)$(CC) $(CFLAGS) -o $@ $^ $(LIBS_O)
|
||||
|
||||
# Run the tests.
|
||||
test : all test_all
|
||||
|
15
test/unit/app/main.c
Normal file
15
test/unit/app/main.c
Normal file
@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Test runner for xmlwriter using ctest.
|
||||
*
|
||||
* Copyright 2014, John McNamara, jmcnamara@cpan.org
|
||||
*
|
||||
*/
|
||||
#define CTEST_MAIN
|
||||
|
||||
#include "../ctest.h"
|
||||
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
return ctest_main(argc, argv);
|
||||
}
|
||||
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/app.h"
|
||||
|
||||
// Test assembling a complete App file.
|
||||
TEST(app, app01) {
|
||||
CTEST(app, app01) {
|
||||
|
||||
char* got;
|
||||
char exp[] =
|
||||
@ -59,7 +59,7 @@ TEST(app, app01) {
|
||||
}
|
||||
|
||||
// Test assembling a complete App file.
|
||||
TEST(app, app02) {
|
||||
CTEST(app, app02) {
|
||||
|
||||
char* got;
|
||||
char exp[] =
|
||||
@ -110,7 +110,7 @@ TEST(app, app02) {
|
||||
|
||||
|
||||
// Test assembling a complete App file.
|
||||
TEST(app, app03) {
|
||||
CTEST(app, app03) {
|
||||
|
||||
char* got;
|
||||
char exp[] =
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/app.h"
|
||||
|
||||
// Test _xml_declaration().
|
||||
TEST(app, xml_declaration) {
|
||||
CTEST(app, xml_declaration) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n";
|
15
test/unit/content_types/main.c
Normal file
15
test/unit/content_types/main.c
Normal file
@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Test runner for xmlwriter using ctest.
|
||||
*
|
||||
* Copyright 2014, John McNamara, jmcnamara@cpan.org
|
||||
*
|
||||
*/
|
||||
#define CTEST_MAIN
|
||||
|
||||
#include "../ctest.h"
|
||||
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
return ctest_main(argc, argv);
|
||||
}
|
||||
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/content_types.h"
|
||||
|
||||
// Test assembling a complete ContentTypes file.
|
||||
TEST(content_types, content_types01) {
|
||||
CTEST(content_types, content_types01) {
|
||||
|
||||
char* got;
|
||||
char exp[] =
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/content_types.h"
|
||||
|
||||
// Test the _write_default() function.
|
||||
TEST(content_types, write_default) {
|
||||
CTEST(content_types, write_default) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<Default Extension=\"xml\" ContentType=\"application/xml\"/>";
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/content_types.h"
|
||||
|
||||
// Test the _write_override() function.
|
||||
TEST(content_types, write_override) {
|
||||
CTEST(content_types, write_override) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<Override PartName=\"/docProps/core.xml\" ContentType=\"app...\"/>";
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/content_types.h"
|
||||
|
||||
// Test _xml_declaration().
|
||||
TEST(content_types, xml_declaration) {
|
||||
CTEST(content_types, xml_declaration) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n";
|
15
test/unit/core/main.c
Normal file
15
test/unit/core/main.c
Normal file
@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Test runner for xmlwriter using ctest.
|
||||
*
|
||||
* Copyright 2014, John McNamara, jmcnamara@cpan.org
|
||||
*
|
||||
*/
|
||||
#define CTEST_MAIN
|
||||
|
||||
#include "../ctest.h"
|
||||
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
return ctest_main(argc, argv);
|
||||
}
|
||||
|
@ -5,14 +5,14 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/core.h"
|
||||
#include "xlsxwriter/workbook.h"
|
||||
|
||||
// Test assembling a complete core file.
|
||||
TEST(core, core01) {
|
||||
CTEST(core, core01) {
|
||||
|
||||
char* got;
|
||||
char exp[] =
|
||||
@ -55,7 +55,7 @@ TEST(core, core01) {
|
||||
|
||||
|
||||
// Test assembling a complete core file.
|
||||
TEST(core, core02) {
|
||||
CTEST(core, core02) {
|
||||
|
||||
char* got;
|
||||
char exp[] =
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/core.h"
|
||||
|
||||
// Test _xml_declaration().
|
||||
TEST(core, xml_declaration) {
|
||||
CTEST(core, xml_declaration) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n";
|
440
test/unit/ctest.h
Normal file
440
test/unit/ctest.h
Normal file
@ -0,0 +1,440 @@
|
||||
/* Copyright 2011,2012 Bas van den Berg
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/* https://github.com/bvdberg/ctest */
|
||||
|
||||
#ifndef CTEST_H
|
||||
#define CTEST_H
|
||||
|
||||
typedef void (*SetupFunc)(void*);
|
||||
typedef void (*TearDownFunc)(void*);
|
||||
|
||||
struct ctest {
|
||||
const char* ssname; // suite name
|
||||
const char* ttname; // test name
|
||||
void (*run)();
|
||||
int skip;
|
||||
|
||||
void* data;
|
||||
SetupFunc setup;
|
||||
TearDownFunc teardown;
|
||||
|
||||
unsigned int magic;
|
||||
};
|
||||
|
||||
#define __FNAME(sname, tname) __ctest_##sname##_##tname##_run
|
||||
#define __TNAME(sname, tname) __ctest_##sname##_##tname
|
||||
|
||||
#define __CTEST_MAGIC (0xdeadbeef)
|
||||
#ifdef __APPLE__
|
||||
#define __Test_Section __attribute__ ((unused,section ("__DATA, .ctest")))
|
||||
#else
|
||||
#define __Test_Section __attribute__ ((unused,section (".ctest")))
|
||||
#endif
|
||||
|
||||
#define __CTEST_STRUCT(sname, tname, _skip, __data, __setup, __teardown) \
|
||||
struct ctest __TNAME(sname, tname) __Test_Section = { \
|
||||
.ssname=#sname, \
|
||||
.ttname=#tname, \
|
||||
.run = __FNAME(sname, tname), \
|
||||
.skip = _skip, \
|
||||
.data = __data, \
|
||||
.setup = (SetupFunc)__setup, \
|
||||
.teardown = (TearDownFunc)__teardown, \
|
||||
.magic = __CTEST_MAGIC };
|
||||
|
||||
#define CTEST_DATA(sname) struct sname##_data
|
||||
|
||||
#define CTEST_SETUP(sname) \
|
||||
void __attribute__ ((weak)) sname##_setup(struct sname##_data* data)
|
||||
|
||||
#define CTEST_TEARDOWN(sname) \
|
||||
void __attribute__ ((weak)) sname##_teardown(struct sname##_data* data)
|
||||
|
||||
#define __CTEST_INTERNAL(sname, tname, _skip) \
|
||||
void __FNAME(sname, tname)(); \
|
||||
__CTEST_STRUCT(sname, tname, _skip, NULL, NULL, NULL) \
|
||||
void __FNAME(sname, tname)()
|
||||
|
||||
#ifdef __APPLE__
|
||||
#define SETUP_FNAME(sname) NULL
|
||||
#define TEARDOWN_FNAME(sname) NULL
|
||||
#else
|
||||
#define SETUP_FNAME(sname) sname##_setup
|
||||
#define TEARDOWN_FNAME(sname) sname##_teardown
|
||||
#endif
|
||||
|
||||
#define __CTEST2_INTERNAL(sname, tname, _skip) \
|
||||
static struct sname##_data __ctest_##sname##_data; \
|
||||
CTEST_SETUP(sname); \
|
||||
CTEST_TEARDOWN(sname); \
|
||||
void __FNAME(sname, tname)(struct sname##_data* data); \
|
||||
__CTEST_STRUCT(sname, tname, _skip, &__ctest_##sname##_data, SETUP_FNAME(sname), TEARDOWN_FNAME(sname)) \
|
||||
void __FNAME(sname, tname)(struct sname##_data* data)
|
||||
|
||||
|
||||
void CTEST_LOG(char *fmt, ...);
|
||||
void CTEST_ERR(char *fmt, ...); // doesn't return
|
||||
|
||||
#define CTEST(sname, tname) __CTEST_INTERNAL(sname, tname, 0)
|
||||
#define CTEST_SKIP(sname, tname) __CTEST_INTERNAL(sname, tname, 1)
|
||||
|
||||
#define CTEST2(sname, tname) __CTEST2_INTERNAL(sname, tname, 0)
|
||||
#define CTEST2_SKIP(sname, tname) __CTEST2_INTERNAL(sname, tname, 1)
|
||||
|
||||
|
||||
void assert_str(const char* exp, const char* real, const char* caller, int line);
|
||||
#define ASSERT_STR(exp, real) assert_str(exp, real, __FILE__, __LINE__)
|
||||
|
||||
void assert_data(const unsigned char* exp, int expsize,
|
||||
const unsigned char* real, int realsize,
|
||||
const char* caller, int line);
|
||||
#define ASSERT_DATA(exp, expsize, real, realsize) \
|
||||
assert_data(exp, expsize, real, realsize, __FILE__, __LINE__)
|
||||
|
||||
void assert_equal(long exp, long real, const char* caller, int line);
|
||||
#define ASSERT_EQUAL(exp, real) assert_equal(exp, real, __FILE__, __LINE__)
|
||||
|
||||
void assert_not_equal(long exp, long real, const char* caller, int line);
|
||||
#define ASSERT_NOT_EQUAL(exp, real) assert_not_equal(exp, real, __FILE__, __LINE__)
|
||||
|
||||
void assert_double(double exp, double real, const char* caller, int line);
|
||||
#define ASSERT_DOUBLE(exp, real) assert_double(exp, real, __FILE__, __LINE__)
|
||||
|
||||
void assert_null(void* real, const char* caller, int line);
|
||||
#define ASSERT_NULL(real) assert_null((void*)real, __FILE__, __LINE__)
|
||||
|
||||
void assert_not_null(const void* real, const char* caller, int line);
|
||||
#define ASSERT_NOT_NULL(real) assert_not_null(real, __FILE__, __LINE__)
|
||||
|
||||
void assert_true(int real, const char* caller, int line);
|
||||
#define ASSERT_TRUE(real) assert_true(real, __FILE__, __LINE__)
|
||||
|
||||
void assert_false(int real, const char* caller, int line);
|
||||
#define ASSERT_FALSE(real) assert_false(real, __FILE__, __LINE__)
|
||||
|
||||
void assert_fail(const char* caller, int line);
|
||||
#define ASSERT_FAIL() assert_fail(__FILE__, __LINE__)
|
||||
|
||||
#ifdef CTEST_MAIN
|
||||
|
||||
#include <setjmp.h>
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <sys/time.h>
|
||||
#include <unistd.h>
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#ifdef __APPLE__
|
||||
#include <dlfcn.h>
|
||||
#endif
|
||||
|
||||
//#define COLOR_OK
|
||||
|
||||
static size_t ctest_errorsize;
|
||||
static char* ctest_errormsg;
|
||||
#define MSG_SIZE 4096
|
||||
static char ctest_errorbuffer[MSG_SIZE];
|
||||
static jmp_buf ctest_err;
|
||||
static int color_output = 1;
|
||||
static const char* suite_name;
|
||||
|
||||
typedef int (*filter_func)(struct ctest*);
|
||||
|
||||
#define ANSI_BLACK "\033[0;30m"
|
||||
#define ANSI_RED "\033[0;31m"
|
||||
#define ANSI_GREEN "\033[0;32m"
|
||||
#define ANSI_YELLOW "\033[0;33m"
|
||||
#define ANSI_BLUE "\033[0;34m"
|
||||
#define ANSI_MAGENTA "\033[0;35m"
|
||||
#define ANSI_CYAN "\033[0;36m"
|
||||
#define ANSI_GREY "\033[0;37m"
|
||||
#define ANSI_DARKGREY "\033[01;30m"
|
||||
#define ANSI_BRED "\033[01;31m"
|
||||
#define ANSI_BGREEN "\033[01;32m"
|
||||
#define ANSI_BYELLOW "\033[01;33m"
|
||||
#define ANSI_BBLUE "\033[01;34m"
|
||||
#define ANSI_BMAGENTA "\033[01;35m"
|
||||
#define ANSI_BCYAN "\033[01;36m"
|
||||
#define ANSI_WHITE "\033[01;37m"
|
||||
#define ANSI_NORMAL "\033[0m"
|
||||
|
||||
static CTEST(suite, test) { }
|
||||
|
||||
static void msg_start(const char* color, const char* title) {
|
||||
int size;
|
||||
if (color_output) {
|
||||
size = snprintf(ctest_errormsg, ctest_errorsize, "%s", color);
|
||||
ctest_errorsize -= size;
|
||||
ctest_errormsg += size;
|
||||
}
|
||||
size = snprintf(ctest_errormsg, ctest_errorsize, " %s: ", title);
|
||||
ctest_errorsize -= size;
|
||||
ctest_errormsg += size;
|
||||
}
|
||||
|
||||
static void msg_end() {
|
||||
int size;
|
||||
if (color_output) {
|
||||
size = snprintf(ctest_errormsg, ctest_errorsize, ANSI_NORMAL);
|
||||
ctest_errorsize -= size;
|
||||
ctest_errormsg += size;
|
||||
}
|
||||
size = snprintf(ctest_errormsg, ctest_errorsize, "\n");
|
||||
ctest_errorsize -= size;
|
||||
ctest_errormsg += size;
|
||||
}
|
||||
|
||||
void CTEST_LOG(char *fmt, ...)
|
||||
{
|
||||
va_list argp;
|
||||
msg_start(ANSI_BLUE, "LOG");
|
||||
|
||||
va_start(argp, fmt);
|
||||
int size = vsnprintf(ctest_errormsg, ctest_errorsize, fmt, argp);
|
||||
ctest_errorsize -= size;
|
||||
ctest_errormsg += size;
|
||||
va_end(argp);
|
||||
|
||||
msg_end();
|
||||
}
|
||||
|
||||
void CTEST_ERR(char *fmt, ...)
|
||||
{
|
||||
va_list argp;
|
||||
msg_start(ANSI_RED, "ERR");
|
||||
|
||||
va_start(argp, fmt);
|
||||
int size = vsnprintf(ctest_errormsg, ctest_errorsize, fmt, argp);
|
||||
ctest_errorsize -= size;
|
||||
ctest_errormsg += size;
|
||||
va_end(argp);
|
||||
|
||||
msg_end();
|
||||
longjmp(ctest_err, 1);
|
||||
}
|
||||
|
||||
void assert_str(const char* exp, const char* real, const char* caller, int line) {
|
||||
if ((exp == NULL && real != NULL) ||
|
||||
(exp != NULL && real == NULL) ||
|
||||
(exp && real && strcmp(exp, real) != 0)) {
|
||||
CTEST_ERR("%s:%d expected '%s', got '%s'", caller, line, exp, real);
|
||||
}
|
||||
}
|
||||
|
||||
void assert_data(const unsigned char* exp, int expsize,
|
||||
const unsigned char* real, int realsize,
|
||||
const char* caller, int line) {
|
||||
int i;
|
||||
if (expsize != realsize) {
|
||||
CTEST_ERR("%s:%d expected %d bytes, got %d", caller, line, expsize, realsize);
|
||||
}
|
||||
for (i=0; i<expsize; i++) {
|
||||
if (exp[i] != real[i]) {
|
||||
CTEST_ERR("%s:%d expected 0x%02x at offset %d got 0x%02x",
|
||||
caller, line, exp[i], i, real[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void assert_equal(long exp, long real, const char* caller, int line) {
|
||||
if (exp != real) {
|
||||
CTEST_ERR("%s:%d expected %ld, got %ld", caller, line, exp, real);
|
||||
}
|
||||
}
|
||||
|
||||
void assert_not_equal(long exp, long real, const char* caller, int line) {
|
||||
if ((exp) == (real)) {
|
||||
CTEST_ERR("%s:%d should not be %ld", caller, line, real);
|
||||
}
|
||||
}
|
||||
|
||||
void assert_double(double exp, double real, const char* caller, int line) {
|
||||
if (exp != real) {
|
||||
CTEST_ERR("%s:%d expected %g, got %g", caller, line, exp, real);
|
||||
}
|
||||
}
|
||||
|
||||
void assert_null(void* real, const char* caller, int line) {
|
||||
if ((real) != NULL) {
|
||||
CTEST_ERR("%s:%d should be NULL", caller, line);
|
||||
}
|
||||
}
|
||||
|
||||
void assert_not_null(const void* real, const char* caller, int line) {
|
||||
if (real == NULL) {
|
||||
CTEST_ERR("%s:%d should not be NULL", caller, line);
|
||||
}
|
||||
}
|
||||
|
||||
void assert_true(int real, const char* caller, int line) {
|
||||
if ((real) == 0) {
|
||||
CTEST_ERR("%s:%d should be true", caller, line);
|
||||
}
|
||||
}
|
||||
|
||||
void assert_false(int real, const char* caller, int line) {
|
||||
if ((real) != 0) {
|
||||
CTEST_ERR("%s:%d should be false", caller, line);
|
||||
}
|
||||
}
|
||||
|
||||
void assert_fail(const char* caller, int line) {
|
||||
CTEST_ERR("%s:%d shouldn't come here", caller, line);
|
||||
}
|
||||
|
||||
|
||||
static int suite_all(struct ctest* t) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int suite_filter(struct ctest* t) {
|
||||
return strncmp(suite_name, t->ssname, strlen(suite_name)) == 0;
|
||||
}
|
||||
|
||||
static uint64_t getCurrentTime() {
|
||||
struct timeval now;
|
||||
gettimeofday(&now, NULL);
|
||||
uint64_t now64 = now.tv_sec;
|
||||
now64 *= 1000000;
|
||||
now64 += (now.tv_usec);
|
||||
return now64;
|
||||
}
|
||||
|
||||
static void color_print(const char* color, const char* text) {
|
||||
if (color_output)
|
||||
printf("%s%s"ANSI_NORMAL"\n", color, text);
|
||||
else
|
||||
printf("%s\n", text);
|
||||
}
|
||||
|
||||
#ifdef __APPLE__
|
||||
static void *find_symbol(struct ctest *test, const char *fname)
|
||||
{
|
||||
size_t len = strlen(test->ssname) + 1 + strlen(fname);
|
||||
char *symbol_name = (char *) malloc(len + 1);
|
||||
memset(symbol_name, 0, len + 1);
|
||||
snprintf(symbol_name, len + 1, "%s_%s", test->ssname, fname);
|
||||
|
||||
//fprintf(stderr, ">>>> dlsym: loading %s\n", symbol_name);
|
||||
void *symbol = dlsym(RTLD_DEFAULT, symbol_name);
|
||||
if (!symbol) {
|
||||
//fprintf(stderr, ">>>> ERROR: %s\n", dlerror());
|
||||
}
|
||||
// returns NULL on error
|
||||
|
||||
free(symbol_name);
|
||||
return symbol;
|
||||
}
|
||||
#endif
|
||||
|
||||
int ctest_main(int argc, const char *argv[])
|
||||
{
|
||||
static int total = 0;
|
||||
static int num_ok = 0;
|
||||
static int num_fail = 0;
|
||||
static int num_skip = 0;
|
||||
static int index = 1;
|
||||
static filter_func filter = suite_all;
|
||||
|
||||
if (argc == 2) {
|
||||
suite_name = argv[1];
|
||||
filter = suite_filter;
|
||||
}
|
||||
|
||||
color_output = isatty(1);
|
||||
uint64_t t1 = getCurrentTime();
|
||||
|
||||
struct ctest* ctest_begin = &__TNAME(suite, test);
|
||||
struct ctest* ctest_end = &__TNAME(suite, test);
|
||||
// find begin and end of section by comparing magics
|
||||
while (1) {
|
||||
struct ctest* t = ctest_begin-1;
|
||||
if (t->magic != __CTEST_MAGIC) break;
|
||||
ctest_begin--;
|
||||
}
|
||||
while (1) {
|
||||
struct ctest* t = ctest_end+1;
|
||||
if (t->magic != __CTEST_MAGIC) break;
|
||||
ctest_end++;
|
||||
}
|
||||
ctest_end++; // end after last one
|
||||
|
||||
static struct ctest* test;
|
||||
for (test = ctest_begin; test != ctest_end; test++) {
|
||||
if (test == &__ctest_suite_test) continue;
|
||||
if (filter(test)) total++;
|
||||
}
|
||||
|
||||
for (test = ctest_begin; test != ctest_end; test++) {
|
||||
if (test == &__ctest_suite_test) continue;
|
||||
if (filter(test)) {
|
||||
ctest_errorbuffer[0] = 0;
|
||||
ctest_errorsize = MSG_SIZE-1;
|
||||
ctest_errormsg = ctest_errorbuffer;
|
||||
printf("TEST %d/%d %s:%s ", index, total, test->ssname, test->ttname);
|
||||
fflush(stdout);
|
||||
if (test->skip) {
|
||||
color_print(ANSI_BYELLOW, "[SKIPPED]");
|
||||
num_skip++;
|
||||
} else {
|
||||
int result = setjmp(ctest_err);
|
||||
if (result == 0) {
|
||||
#ifdef __APPLE__
|
||||
if (!test->setup) {
|
||||
test->setup = find_symbol(test, "setup");
|
||||
}
|
||||
if (!test->teardown) {
|
||||
test->teardown = find_symbol(test, "teardown");
|
||||
}
|
||||
#endif
|
||||
|
||||
if (test->setup) test->setup(test->data);
|
||||
if (test->data)
|
||||
test->run(test->data);
|
||||
else
|
||||
test->run();
|
||||
if (test->teardown) test->teardown(test->data);
|
||||
// if we got here it's ok
|
||||
#ifdef COLOR_OK
|
||||
color_print(ANSI_GREEN, "[OK]");
|
||||
#else
|
||||
printf("[OK]\n");
|
||||
#endif
|
||||
num_ok++;
|
||||
} else {
|
||||
color_print(ANSI_RED, "[FAIL]");
|
||||
num_fail++;
|
||||
}
|
||||
if (ctest_errorsize != MSG_SIZE-1) printf("%s", ctest_errorbuffer);
|
||||
}
|
||||
index++;
|
||||
}
|
||||
}
|
||||
uint64_t t2 = getCurrentTime();
|
||||
|
||||
const char* color = (num_fail) ? ANSI_RED : ANSI_GREEN;
|
||||
char results[80];
|
||||
sprintf(results, "\nRESULTS: %d tests (%d ok, %d failed, %d skipped) ran in %lld ms",
|
||||
total, num_ok, num_fail, num_skip, (t2 - t1)/1000);
|
||||
color_print(color, results);
|
||||
return num_fail;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
#endif
|
@ -1,3 +1,5 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
/* Compare expected results with the XML data written to the output
|
||||
* test file.
|
||||
@ -11,7 +13,7 @@
|
||||
rewind(testfile); \
|
||||
fread(got, file_size, 1, testfile); \
|
||||
\
|
||||
EXPECT_STREQ((exp), (got)); \
|
||||
ASSERT_STR((exp), (got)); \
|
||||
\
|
||||
if (got) \
|
||||
free(got); \
|
||||
@ -39,7 +41,7 @@
|
||||
got_short++; \
|
||||
} \
|
||||
\
|
||||
EXPECT_STREQ(exp_short, got_short); \
|
||||
ASSERT_STR(exp_short, got_short); \
|
||||
\
|
||||
if (got) \
|
||||
free(got); \
|
||||
@ -49,27 +51,27 @@
|
||||
|
||||
#define TEST_COL_TO_NAME(num, abs, exp) \
|
||||
lxw_col_to_name(got, num, abs); \
|
||||
EXPECT_STREQ(exp, got);
|
||||
ASSERT_STR(exp, got);
|
||||
|
||||
|
||||
#define TEST_ROWCOL_TO_CELL(row, col, exp) \
|
||||
lxw_rowcol_to_cell(got, row, col); \
|
||||
EXPECT_STREQ(exp, got);
|
||||
ASSERT_STR(exp, got);
|
||||
|
||||
|
||||
#define TEST_ROWCOL_TO_CELL_ABS(row, col, row_abs, col_abs, exp) \
|
||||
lxw_rowcol_to_cell_abs(got, row, col, row_abs, col_abs); \
|
||||
EXPECT_STREQ(exp, got);
|
||||
ASSERT_STR(exp, got);
|
||||
|
||||
|
||||
#define TEST_XL_RANGE(row1, col1, row2, col2, exp) \
|
||||
lxw_range(got, row1, col1, row2, col2); \
|
||||
EXPECT_STREQ(exp, got);
|
||||
ASSERT_STR(exp, got);
|
||||
|
||||
|
||||
#define TEST_XL_RANGE_ABS(row1, col1, row2, col2, exp) \
|
||||
lxw_range_abs(got, row1, col1, row2, col2); \
|
||||
EXPECT_STREQ(exp, got);
|
||||
ASSERT_STR(exp, got);
|
||||
|
||||
|
||||
#define TEST_DATETIME_TIME(_hour, _min, _sec, exp) \
|
||||
@ -80,7 +82,7 @@
|
||||
\
|
||||
got = _datetime_to_excel_date(datetime, 0); \
|
||||
\
|
||||
ASSERT_DOUBLE_EQ(exp, got); \
|
||||
ASSERT_DOUBLE(exp, got); \
|
||||
free(datetime);
|
||||
|
||||
#define TEST_DATETIME_DATE(_year, _month, _day, exp) \
|
||||
@ -91,7 +93,7 @@
|
||||
\
|
||||
got = _datetime_to_excel_date(datetime, 0); \
|
||||
\
|
||||
ASSERT_DOUBLE_EQ(exp, got); \
|
||||
ASSERT_DOUBLE(exp, got); \
|
||||
free(datetime);
|
||||
|
||||
#define TEST_DATETIME_DATE_1904(_year, _month, _day, exp) \
|
||||
@ -102,7 +104,7 @@
|
||||
\
|
||||
got = _datetime_to_excel_date(datetime, 1); \
|
||||
\
|
||||
ASSERT_DOUBLE_EQ(exp, got); \
|
||||
ASSERT_DOUBLE(exp, got); \
|
||||
free(datetime);
|
||||
|
||||
#define TEST_DATETIME(_year, _month, _day, _hour, _min, _sec, exp) \
|
||||
@ -116,5 +118,5 @@
|
||||
\
|
||||
got = _datetime_to_excel_date(datetime, 0); \
|
||||
\
|
||||
ASSERT_DOUBLE_EQ(exp, got); \
|
||||
ASSERT_DOUBLE(exp, got); \
|
||||
free(datetime);
|
||||
|
15
test/unit/relationships/main.c
Normal file
15
test/unit/relationships/main.c
Normal file
@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Test runner for xmlwriter using ctest.
|
||||
*
|
||||
* Copyright 2014, John McNamara, jmcnamara@cpan.org
|
||||
*
|
||||
*/
|
||||
#define CTEST_MAIN
|
||||
|
||||
#include "../ctest.h"
|
||||
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
return ctest_main(argc, argv);
|
||||
}
|
||||
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/relationships.h"
|
||||
|
||||
// Test assembling a complete Relationships file.
|
||||
TEST(relationships, relationships01) {
|
||||
CTEST(relationships, relationships01) {
|
||||
|
||||
char* got;
|
||||
char exp[] =
|
||||
@ -44,7 +44,7 @@ TEST(relationships, relationships01) {
|
||||
}
|
||||
|
||||
// Test assembling a complete Relationships file.
|
||||
TEST(relationships, relationships02) {
|
||||
CTEST(relationships, relationships02) {
|
||||
|
||||
char* got;
|
||||
char exp[] =
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/relationships.h"
|
||||
|
||||
// Test _xml_declaration().
|
||||
TEST(relationships, xml_declaration) {
|
||||
CTEST(relationships, xml_declaration) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n";
|
15
test/unit/sst/main.c
Normal file
15
test/unit/sst/main.c
Normal file
@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Test runner for xmlwriter using ctest.
|
||||
*
|
||||
* Copyright 2014, John McNamara, jmcnamara@cpan.org
|
||||
*
|
||||
*/
|
||||
#define CTEST_MAIN
|
||||
|
||||
#include "../ctest.h"
|
||||
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
return ctest_main(argc, argv);
|
||||
}
|
||||
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/shared_strings.h"
|
||||
|
||||
// Test assembling a complete SharedStrings file.
|
||||
TEST(sst, sst01) {
|
||||
CTEST(sst, sst01) {
|
||||
|
||||
char* got;
|
||||
char exp[] =
|
||||
@ -49,7 +49,7 @@ TEST(sst, sst01) {
|
||||
}
|
||||
|
||||
// Test assembling a complete SharedStrings file.
|
||||
TEST(sst, sst02) {
|
||||
CTEST(sst, sst02) {
|
||||
|
||||
char* got;
|
||||
char exp[] =
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/shared_strings.h"
|
||||
|
||||
// Test _xml_declaration().
|
||||
TEST(sst, xml_declaration) {
|
||||
CTEST(sst, xml_declaration) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n";
|
15
test/unit/styles/main.c
Normal file
15
test/unit/styles/main.c
Normal file
@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Test runner for xmlwriter using ctest.
|
||||
*
|
||||
* Copyright 2014, John McNamara, jmcnamara@cpan.org
|
||||
*
|
||||
*/
|
||||
#define CTEST_MAIN
|
||||
|
||||
#include "../ctest.h"
|
||||
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
return ctest_main(argc, argv);
|
||||
}
|
||||
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/styles.h"
|
||||
|
||||
// Test assembling a complete Styles file.
|
||||
TEST(styles, styles01) {
|
||||
CTEST(styles, styles01) {
|
||||
|
||||
char* got;
|
||||
char exp[] =
|
||||
@ -80,7 +80,7 @@ TEST(styles, styles01) {
|
||||
}
|
||||
|
||||
// Test assembling a complete Styles file.
|
||||
TEST(styles, styles02) {
|
||||
CTEST(styles, styles02) {
|
||||
|
||||
char* got;
|
||||
char exp[] =
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/styles.h"
|
||||
|
||||
// Test the _write_border() function.
|
||||
TEST(styles, write_border) {
|
||||
CTEST(styles, write_border) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<border><left/><right/><top/><bottom/><diagonal/></border>";
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/styles.h"
|
||||
|
||||
// Test the _write_borders() function.
|
||||
TEST(styles, write_borders) {
|
||||
CTEST(styles, write_borders) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<borders count=\"1\"><border><left/><right/><top/><bottom/><diagonal/></border></borders>";
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/styles.h"
|
||||
|
||||
// Test the _write_cell_style() function.
|
||||
TEST(styles, write_cell_style) {
|
||||
CTEST(styles, write_cell_style) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<cellStyle name=\"Normal\" xfId=\"0\" builtinId=\"0\"/>";
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/styles.h"
|
||||
|
||||
// Test the _write_cell_style_xfs() function.
|
||||
TEST(styles, write_cell_style_xfs) {
|
||||
CTEST(styles, write_cell_style_xfs) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<cellStyleXfs count=\"1\"><xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\"/></cellStyleXfs>";
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/styles.h"
|
||||
|
||||
// Test the _write_cell_styles() function.
|
||||
TEST(styles, write_cell_styles) {
|
||||
CTEST(styles, write_cell_styles) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<cellStyles count=\"1\"><cellStyle name=\"Normal\" xfId=\"0\" builtinId=\"0\"/></cellStyles>";
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/styles.h"
|
||||
|
||||
// Test the _write_cell_xfs() function.
|
||||
TEST(styles, write_cell_xfs) {
|
||||
CTEST(styles, write_cell_xfs) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<cellXfs count=\"1\"><xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\"/></cellXfs>";
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/styles.h"
|
||||
|
||||
// Test the _write_default_fill() function.
|
||||
TEST(styles, write_default_fill) {
|
||||
CTEST(styles, write_default_fill) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<fill><patternFill patternType=\"none\"/></fill>";
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/styles.h"
|
||||
|
||||
// Test the _write_dxfs() function.
|
||||
TEST(styles, write_dxfs) {
|
||||
CTEST(styles, write_dxfs) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<dxfs count=\"0\"/>";
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/styles.h"
|
||||
|
||||
// Test the _write_fills() function.
|
||||
TEST(styles, write_fills) {
|
||||
CTEST(styles, write_fills) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<fills count=\"2\"><fill><patternFill patternType=\"none\"/></fill><fill><patternFill patternType=\"gray125\"/></fill></fills>";
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/styles.h"
|
||||
|
||||
// Test the _write_font() function.
|
||||
TEST(styles, write_font01) {
|
||||
CTEST(styles, write_font01) {
|
||||
|
||||
|
||||
char* got;
|
||||
@ -32,7 +32,7 @@ TEST(styles, write_font01) {
|
||||
}
|
||||
|
||||
// Test the _write_font() function.
|
||||
TEST(styles, write_font02) {
|
||||
CTEST(styles, write_font02) {
|
||||
|
||||
|
||||
char* got;
|
||||
@ -55,7 +55,7 @@ TEST(styles, write_font02) {
|
||||
}
|
||||
|
||||
// Test the _write_font() function.
|
||||
TEST(styles, write_font03) {
|
||||
CTEST(styles, write_font03) {
|
||||
|
||||
|
||||
char* got;
|
||||
@ -78,7 +78,7 @@ TEST(styles, write_font03) {
|
||||
}
|
||||
|
||||
// Test the _write_font() function.
|
||||
TEST(styles, write_font04) {
|
||||
CTEST(styles, write_font04) {
|
||||
|
||||
|
||||
char* got;
|
||||
@ -101,7 +101,7 @@ TEST(styles, write_font04) {
|
||||
}
|
||||
|
||||
// Test the _write_font() function.
|
||||
TEST(styles, write_font05) {
|
||||
CTEST(styles, write_font05) {
|
||||
|
||||
|
||||
char* got;
|
||||
@ -124,7 +124,7 @@ TEST(styles, write_font05) {
|
||||
}
|
||||
|
||||
// Test the _write_font() function.
|
||||
TEST(styles, write_font06) {
|
||||
CTEST(styles, write_font06) {
|
||||
|
||||
|
||||
char* got;
|
||||
@ -147,7 +147,7 @@ TEST(styles, write_font06) {
|
||||
}
|
||||
|
||||
// Test the _write_font() function.
|
||||
TEST(styles, write_font07) {
|
||||
CTEST(styles, write_font07) {
|
||||
|
||||
|
||||
char* got;
|
||||
@ -170,7 +170,7 @@ TEST(styles, write_font07) {
|
||||
}
|
||||
|
||||
// Test the _write_font() function.
|
||||
TEST(styles, write_font08) {
|
||||
CTEST(styles, write_font08) {
|
||||
|
||||
|
||||
char* got;
|
||||
@ -193,7 +193,7 @@ TEST(styles, write_font08) {
|
||||
}
|
||||
|
||||
// Test the _write_font() function.
|
||||
TEST(styles, write_font09) {
|
||||
CTEST(styles, write_font09) {
|
||||
|
||||
|
||||
char* got;
|
||||
@ -216,7 +216,7 @@ TEST(styles, write_font09) {
|
||||
}
|
||||
|
||||
// Test the _write_font() function.
|
||||
TEST(styles, write_font10) {
|
||||
CTEST(styles, write_font10) {
|
||||
|
||||
|
||||
char* got;
|
||||
@ -239,7 +239,7 @@ TEST(styles, write_font10) {
|
||||
}
|
||||
|
||||
// Test the _write_font() function.
|
||||
TEST(styles, write_font11) {
|
||||
CTEST(styles, write_font11) {
|
||||
|
||||
|
||||
char* got;
|
||||
@ -262,7 +262,7 @@ TEST(styles, write_font11) {
|
||||
}
|
||||
|
||||
// Test the _write_font() function.
|
||||
TEST(styles, write_font12) {
|
||||
CTEST(styles, write_font12) {
|
||||
|
||||
|
||||
char* got;
|
||||
@ -285,7 +285,7 @@ TEST(styles, write_font12) {
|
||||
}
|
||||
|
||||
// Test the _write_font() function.
|
||||
TEST(styles, write_font13) {
|
||||
CTEST(styles, write_font13) {
|
||||
|
||||
|
||||
char* got;
|
||||
@ -316,7 +316,7 @@ TEST(styles, write_font13) {
|
||||
}
|
||||
|
||||
// Test the _write_font() function.
|
||||
TEST(styles, write_font14) {
|
||||
CTEST(styles, write_font14) {
|
||||
|
||||
|
||||
char* got;
|
||||
@ -339,7 +339,7 @@ TEST(styles, write_font14) {
|
||||
}
|
||||
|
||||
// Test the _write_font() function.
|
||||
TEST(styles, write_font15) {
|
||||
CTEST(styles, write_font15) {
|
||||
|
||||
|
||||
char* got;
|
||||
@ -362,7 +362,7 @@ TEST(styles, write_font15) {
|
||||
}
|
||||
|
||||
// Test the _write_font() function.
|
||||
TEST(styles, write_font16) {
|
||||
CTEST(styles, write_font16) {
|
||||
|
||||
|
||||
char* got;
|
||||
@ -387,7 +387,7 @@ TEST(styles, write_font16) {
|
||||
|
||||
|
||||
// Test the _write_font() function.
|
||||
TEST(styles, write_font17) {
|
||||
CTEST(styles, write_font17) {
|
||||
|
||||
|
||||
char* got;
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/styles.h"
|
||||
|
||||
// Test the _write_color() function.
|
||||
TEST(styles, write_color) {
|
||||
CTEST(styles, write_color) {
|
||||
|
||||
|
||||
char* got;
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/styles.h"
|
||||
|
||||
// Test the _write_family() function.
|
||||
TEST(styles, write_family) {
|
||||
CTEST(styles, write_family) {
|
||||
|
||||
|
||||
char* got;
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/styles.h"
|
||||
|
||||
// Test the _write_name() function.
|
||||
TEST(styles, write_name) {
|
||||
CTEST(styles, write_name) {
|
||||
|
||||
|
||||
char* got;
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/styles.h"
|
||||
|
||||
// Test the _write_scheme() function.
|
||||
TEST(styles, write_scheme) {
|
||||
CTEST(styles, write_scheme) {
|
||||
|
||||
|
||||
char* got;
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/styles.h"
|
||||
|
||||
// Test the _write_sz() function.
|
||||
TEST(styles, write_sz) {
|
||||
CTEST(styles, write_sz) {
|
||||
|
||||
|
||||
char* got;
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/styles.h"
|
||||
|
||||
// Test the _write_font() function.
|
||||
TEST(styles, write_fonts01) {
|
||||
CTEST(styles, write_fonts01) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<fonts count=\"1\"><font><sz val=\"11\"/><color theme=\"1\"/><name val=\"Calibri\"/><family val=\"2\"/><scheme val=\"minor\"/></font></fonts>";
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/styles.h"
|
||||
|
||||
// Test the _write_style_sheet() function.
|
||||
TEST(styles, write_style_sheet) {
|
||||
CTEST(styles, write_style_sheet) {
|
||||
|
||||
|
||||
char* got;
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/styles.h"
|
||||
|
||||
// Test the _write_style_xf() function.
|
||||
TEST(styles, write_style_xf) {
|
||||
CTEST(styles, write_style_xf) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\"/>";
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/styles.h"
|
||||
|
||||
// Test the _write_table_styles() function.
|
||||
TEST(styles, write_table_styles) {
|
||||
CTEST(styles, write_table_styles) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<tableStyles count=\"0\" defaultTableStyle=\"TableStyleMedium9\" defaultPivotStyle=\"PivotStyleLight16\"/>";
|
@ -5,14 +5,14 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/styles.h"
|
||||
#include "xlsxwriter/format.h"
|
||||
|
||||
// Test the _write_xf() method. Default properties.
|
||||
TEST(styles, write_xf01) {
|
||||
CTEST(styles, write_xf01) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\"/>";
|
||||
@ -33,7 +33,7 @@ TEST(styles, write_xf01) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Has font but is first XF.
|
||||
TEST(styles, write_xf02) {
|
||||
CTEST(styles, write_xf02) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\"/>";
|
||||
@ -56,7 +56,7 @@ TEST(styles, write_xf02) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Has font but isn't first XF.
|
||||
TEST(styles, write_xf03) {
|
||||
CTEST(styles, write_xf03) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"1\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyFont=\"1\"/>";
|
||||
@ -80,7 +80,7 @@ TEST(styles, write_xf03) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Uses built-in number format.
|
||||
TEST(styles, write_xf04) {
|
||||
CTEST(styles, write_xf04) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"2\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyNumberFormat=\"1\"/>";
|
||||
@ -103,7 +103,7 @@ TEST(styles, write_xf04) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Uses built-in number format + font.
|
||||
TEST(styles, write_xf05) {
|
||||
CTEST(styles, write_xf05) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"2\" fontId=\"1\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyNumberFormat=\"1\" applyFont=\"1\"/>";
|
||||
@ -128,7 +128,7 @@ TEST(styles, write_xf05) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Vertical alignment = top.
|
||||
TEST(styles, write_xf06) {
|
||||
CTEST(styles, write_xf06) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"><alignment vertical=\"top\"/></xf>";
|
||||
@ -151,7 +151,7 @@ TEST(styles, write_xf06) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Vertical alignment = centre.
|
||||
TEST(styles, write_xf07) {
|
||||
CTEST(styles, write_xf07) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"><alignment vertical=\"center\"/></xf>";
|
||||
@ -174,7 +174,7 @@ TEST(styles, write_xf07) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Vertical alignment = bottom.
|
||||
TEST(styles, write_xf08) {
|
||||
CTEST(styles, write_xf08) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"/>";
|
||||
@ -197,7 +197,7 @@ TEST(styles, write_xf08) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Vertical alignment = justify.
|
||||
TEST(styles, write_xf09) {
|
||||
CTEST(styles, write_xf09) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"><alignment vertical=\"justify\"/></xf>";
|
||||
@ -220,7 +220,7 @@ TEST(styles, write_xf09) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Vertical alignment = distributed.
|
||||
TEST(styles, write_xf10) {
|
||||
CTEST(styles, write_xf10) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"><alignment vertical=\"distributed\"/></xf>";
|
||||
@ -243,7 +243,7 @@ TEST(styles, write_xf10) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Horizontal alignment = left.
|
||||
TEST(styles, write_xf11) {
|
||||
CTEST(styles, write_xf11) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"><alignment horizontal=\"left\"/></xf>";
|
||||
@ -266,7 +266,7 @@ TEST(styles, write_xf11) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Horizontal alignment = center.
|
||||
TEST(styles, write_xf12) {
|
||||
CTEST(styles, write_xf12) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"><alignment horizontal=\"center\"/></xf>";
|
||||
@ -289,7 +289,7 @@ TEST(styles, write_xf12) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Horizontal alignment = right.
|
||||
TEST(styles, write_xf13) {
|
||||
CTEST(styles, write_xf13) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"><alignment horizontal=\"right\"/></xf>";
|
||||
@ -312,7 +312,7 @@ TEST(styles, write_xf13) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Horizontal alignment = left + indent.
|
||||
TEST(styles, write_xf14) {
|
||||
CTEST(styles, write_xf14) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"><alignment horizontal=\"left\" indent=\"1\"/></xf>";
|
||||
@ -336,7 +336,7 @@ TEST(styles, write_xf14) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Horizontal alignment = right + indent.
|
||||
TEST(styles, write_xf15) {
|
||||
CTEST(styles, write_xf15) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"><alignment horizontal=\"right\" indent=\"1\"/></xf>";
|
||||
@ -360,7 +360,7 @@ TEST(styles, write_xf15) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Horizontal alignment = fill.
|
||||
TEST(styles, write_xf16) {
|
||||
CTEST(styles, write_xf16) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"><alignment horizontal=\"fill\"/></xf>";
|
||||
@ -383,7 +383,7 @@ TEST(styles, write_xf16) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Horizontal alignment = justify.
|
||||
TEST(styles, write_xf17) {
|
||||
CTEST(styles, write_xf17) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"><alignment horizontal=\"justify\"/></xf>";
|
||||
@ -406,7 +406,7 @@ TEST(styles, write_xf17) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Horizontal alignment = center across.
|
||||
TEST(styles, write_xf18) {
|
||||
CTEST(styles, write_xf18) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"><alignment horizontal=\"centerContinuous\"/></xf>";
|
||||
@ -429,7 +429,7 @@ TEST(styles, write_xf18) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Horizontal alignment = distributed.
|
||||
TEST(styles, write_xf19) {
|
||||
CTEST(styles, write_xf19) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"><alignment horizontal=\"distributed\"/></xf>";
|
||||
@ -452,7 +452,7 @@ TEST(styles, write_xf19) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Horizontal alignment = distributed + indent.
|
||||
TEST(styles, write_xf20) {
|
||||
CTEST(styles, write_xf20) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"><alignment horizontal=\"distributed\" indent=\"1\"/></xf>";
|
||||
@ -476,7 +476,7 @@ TEST(styles, write_xf20) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Horizontal alignment = justify distributed.
|
||||
TEST(styles, write_xf21) {
|
||||
CTEST(styles, write_xf21) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"><alignment horizontal=\"distributed\" justifyLastLine=\"1\"/></xf>";
|
||||
@ -501,7 +501,7 @@ TEST(styles, write_xf21) {
|
||||
|
||||
// Test the _write_xf() method. Horizontal alignment = indent only.
|
||||
// This should default to left alignment.
|
||||
TEST(styles, write_xf22) {
|
||||
CTEST(styles, write_xf22) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"><alignment horizontal=\"left\" indent=\"1\"/></xf>";
|
||||
@ -526,7 +526,7 @@ TEST(styles, write_xf22) {
|
||||
// Test the _write_xf() method. Horizontal alignment = distributed + indent.
|
||||
// The justify_distributed should drop back to plain distributed if there
|
||||
// is an indent.
|
||||
TEST(styles, write_xf23) {
|
||||
CTEST(styles, write_xf23) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"><alignment horizontal=\"distributed\" indent=\"1\"/></xf>";
|
||||
@ -550,7 +550,7 @@ TEST(styles, write_xf23) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Alignment = text wrap
|
||||
TEST(styles, write_xf24) {
|
||||
CTEST(styles, write_xf24) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"><alignment wrapText=\"1\"/></xf>";
|
||||
@ -573,7 +573,7 @@ TEST(styles, write_xf24) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Alignment = shrink to fit
|
||||
TEST(styles, write_xf25) {
|
||||
CTEST(styles, write_xf25) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"><alignment shrinkToFit=\"1\"/></xf>";
|
||||
@ -596,7 +596,7 @@ TEST(styles, write_xf25) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Alignment = reading order
|
||||
TEST(styles, write_xf26) {
|
||||
CTEST(styles, write_xf26) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"><alignment readingOrder=\"1\"/></xf>";
|
||||
@ -619,7 +619,7 @@ TEST(styles, write_xf26) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Alignment = reading order
|
||||
TEST(styles, write_xf27) {
|
||||
CTEST(styles, write_xf27) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"><alignment readingOrder=\"2\"/></xf>";
|
||||
@ -642,7 +642,7 @@ TEST(styles, write_xf27) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Alignment = rotation
|
||||
TEST(styles, write_xf28) {
|
||||
CTEST(styles, write_xf28) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"><alignment textRotation=\"45\"/></xf>";
|
||||
@ -665,7 +665,7 @@ TEST(styles, write_xf28) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Alignment = rotation
|
||||
TEST(styles, write_xf29) {
|
||||
CTEST(styles, write_xf29) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"><alignment textRotation=\"135\"/></xf>";
|
||||
@ -688,7 +688,7 @@ TEST(styles, write_xf29) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Alignment = rotation
|
||||
TEST(styles, write_xf30) {
|
||||
CTEST(styles, write_xf30) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"><alignment textRotation=\"255\"/></xf>";
|
||||
@ -711,7 +711,7 @@ TEST(styles, write_xf30) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Alignment = rotation
|
||||
TEST(styles, write_xf31) {
|
||||
CTEST(styles, write_xf31) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"><alignment textRotation=\"90\"/></xf>";
|
||||
@ -734,7 +734,7 @@ TEST(styles, write_xf31) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. Alignment = rotation
|
||||
TEST(styles, write_xf32) {
|
||||
CTEST(styles, write_xf32) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\"><alignment textRotation=\"180\"/></xf>";
|
||||
@ -757,7 +757,7 @@ TEST(styles, write_xf32) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. With cell protection.
|
||||
TEST(styles, write_xf33) {
|
||||
CTEST(styles, write_xf33) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyProtection=\"1\"><protection locked=\"0\"/></xf>";
|
||||
@ -780,7 +780,7 @@ TEST(styles, write_xf33) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. With cell protection.
|
||||
TEST(styles, write_xf34) {
|
||||
CTEST(styles, write_xf34) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyProtection=\"1\"><protection hidden=\"1\"/></xf>";
|
||||
@ -803,7 +803,7 @@ TEST(styles, write_xf34) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. With cell protection.
|
||||
TEST(styles, write_xf35) {
|
||||
CTEST(styles, write_xf35) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyProtection=\"1\"><protection locked=\"0\" hidden=\"1\"/></xf>";
|
||||
@ -827,7 +827,7 @@ TEST(styles, write_xf35) {
|
||||
|
||||
|
||||
// Test the _write_xf() method. With cell protection + align.
|
||||
TEST(styles, write_xf36) {
|
||||
CTEST(styles, write_xf36) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<xf numFmtId=\"0\" fontId=\"0\" fillId=\"0\" borderId=\"0\" xfId=\"0\" applyAlignment=\"1\" applyProtection=\"1\"><alignment horizontal=\"right\"/><protection locked=\"0\" hidden=\"1\"/></xf>";
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/styles.h"
|
||||
|
||||
// Test _xml_declaration().
|
||||
TEST(styles, xml_declaration) {
|
||||
CTEST(styles, xml_declaration) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n";
|
15
test/unit/test_all.c
Normal file
15
test/unit/test_all.c
Normal file
@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Test runner for xmlwriter using ctest.
|
||||
*
|
||||
* Copyright 2014, John McNamara, jmcnamara@cpan.org
|
||||
*
|
||||
*/
|
||||
#define CTEST_MAIN
|
||||
|
||||
#include "ctest.h"
|
||||
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
return ctest_main(argc, argv);
|
||||
}
|
||||
|
15
test/unit/utility/main.c
Normal file
15
test/unit/utility/main.c
Normal file
@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Test runner for xmlwriter using ctest.
|
||||
*
|
||||
* Copyright 2014, John McNamara, jmcnamara@cpan.org
|
||||
*
|
||||
*/
|
||||
#define CTEST_MAIN
|
||||
|
||||
#include "../ctest.h"
|
||||
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
return ctest_main(argc, argv);
|
||||
}
|
||||
|
@ -5,14 +5,14 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/utility.h"
|
||||
|
||||
|
||||
// Test _datetime_to_excel_date().
|
||||
TEST(utility, _datetime_date_and_time) {
|
||||
CTEST(utility, _datetime_date_and_time) {
|
||||
|
||||
double got;
|
||||
lxw_datetime *datetime;
|
||||
@ -117,7 +117,7 @@ TEST(utility, _datetime_date_and_time) {
|
||||
TEST_DATETIME(9999, 12, 31, 23, 59, 59.000, 2958465.999988426);
|
||||
}
|
||||
|
||||
TEST(utility, _datetime_date_only) {
|
||||
CTEST(utility, _datetime_date_only) {
|
||||
|
||||
double got;
|
||||
lxw_datetime *datetime;
|
||||
@ -324,7 +324,7 @@ TEST(utility, _datetime_date_only) {
|
||||
}
|
||||
|
||||
|
||||
TEST(utility, _datetime_date_only_1904) {
|
||||
CTEST(utility, _datetime_date_only_1904) {
|
||||
|
||||
double got;
|
||||
lxw_datetime *datetime;
|
||||
@ -532,7 +532,7 @@ TEST(utility, _datetime_date_only_1904) {
|
||||
TEST_DATETIME_DATE_1904(9999, 12, 31, 2957003);
|
||||
}
|
||||
|
||||
TEST(utility, _datetime_time_only) {
|
||||
CTEST(utility, _datetime_time_only) {
|
||||
|
||||
double got;
|
||||
lxw_datetime *datetime;
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/utility.h"
|
||||
|
||||
// Test _xl_col_to_name().
|
||||
TEST(utility, lxw_col_to_name) {
|
||||
CTEST(utility, lxw_col_to_name) {
|
||||
|
||||
char got[MAX_COL_NAME_LENGTH];
|
||||
|
46
test/unit/utility/test_xl_get_col.c
Normal file
46
test/unit/utility/test_xl_get_col.c
Normal file
@ -0,0 +1,46 @@
|
||||
/*
|
||||
* Tests for the libxlsxwriter library.
|
||||
*
|
||||
* Copyright 2014, John McNamara, jmcnamara@cpan.org
|
||||
*
|
||||
*/
|
||||
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/utility.h"
|
||||
|
||||
// Test _xl_get_col().
|
||||
CTEST(utility, _xl_get_col) {
|
||||
|
||||
ASSERT_EQUAL(0, lxw_get_col("A1"));
|
||||
ASSERT_EQUAL(1, lxw_get_col("B1"));
|
||||
ASSERT_EQUAL(2, lxw_get_col("C1"));
|
||||
ASSERT_EQUAL(9, lxw_get_col("J1"));
|
||||
ASSERT_EQUAL(24, lxw_get_col("Y1"));
|
||||
ASSERT_EQUAL(25, lxw_get_col("Z1"));
|
||||
ASSERT_EQUAL(26, lxw_get_col("AA1"));
|
||||
ASSERT_EQUAL(254, lxw_get_col("IU1"));
|
||||
ASSERT_EQUAL(255, lxw_get_col("IV1"));
|
||||
ASSERT_EQUAL(256, lxw_get_col("IW1"));
|
||||
ASSERT_EQUAL(16383, lxw_get_col("XFD1"));
|
||||
ASSERT_EQUAL(16384, lxw_get_col("XFE1"));
|
||||
}
|
||||
|
||||
|
||||
// Test _xl_get_col_2().
|
||||
CTEST(utility, _xl_get_col_2) {
|
||||
|
||||
ASSERT_EQUAL(0, lxw_get_col_2("AAA:A"));
|
||||
ASSERT_EQUAL(1, lxw_get_col_2("AAA:B"));
|
||||
ASSERT_EQUAL(2, lxw_get_col_2("AAA:C"));
|
||||
ASSERT_EQUAL(9, lxw_get_col_2("AAA:J"));
|
||||
ASSERT_EQUAL(24, lxw_get_col_2("AAA:Y"));
|
||||
ASSERT_EQUAL(25, lxw_get_col_2("AAA:Z"));
|
||||
ASSERT_EQUAL(26, lxw_get_col_2("AAA:AA"));
|
||||
ASSERT_EQUAL(254, lxw_get_col_2("AAA:IU"));
|
||||
ASSERT_EQUAL(255, lxw_get_col_2("AAA:IV"));
|
||||
ASSERT_EQUAL(256, lxw_get_col_2("AAA:IW"));
|
||||
ASSERT_EQUAL(16383, lxw_get_col_2("AAA:XFD"));
|
||||
ASSERT_EQUAL(16384, lxw_get_col_2("AAA:XFE"));
|
||||
}
|
@ -1,46 +0,0 @@
|
||||
/*
|
||||
* Tests for the libxlsxwriter library.
|
||||
*
|
||||
* Copyright 2014, John McNamara, jmcnamara@cpan.org
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/utility.h"
|
||||
|
||||
// Test _xl_get_col().
|
||||
TEST(utility, _xl_get_col) {
|
||||
|
||||
EXPECT_EQ(0, lxw_get_col("A1"));
|
||||
EXPECT_EQ(1, lxw_get_col("B1"));
|
||||
EXPECT_EQ(2, lxw_get_col("C1"));
|
||||
EXPECT_EQ(9, lxw_get_col("J1"));
|
||||
EXPECT_EQ(24, lxw_get_col("Y1"));
|
||||
EXPECT_EQ(25, lxw_get_col("Z1"));
|
||||
EXPECT_EQ(26, lxw_get_col("AA1"));
|
||||
EXPECT_EQ(254, lxw_get_col("IU1"));
|
||||
EXPECT_EQ(255, lxw_get_col("IV1"));
|
||||
EXPECT_EQ(256, lxw_get_col("IW1"));
|
||||
EXPECT_EQ(16383, lxw_get_col("XFD1"));
|
||||
EXPECT_EQ(16384, lxw_get_col("XFE1"));
|
||||
}
|
||||
|
||||
|
||||
// Test _xl_get_col_2().
|
||||
TEST(utility, _xl_get_col_2) {
|
||||
|
||||
EXPECT_EQ(0, lxw_get_col_2("AAA:A"));
|
||||
EXPECT_EQ(1, lxw_get_col_2("AAA:B"));
|
||||
EXPECT_EQ(2, lxw_get_col_2("AAA:C"));
|
||||
EXPECT_EQ(9, lxw_get_col_2("AAA:J"));
|
||||
EXPECT_EQ(24, lxw_get_col_2("AAA:Y"));
|
||||
EXPECT_EQ(25, lxw_get_col_2("AAA:Z"));
|
||||
EXPECT_EQ(26, lxw_get_col_2("AAA:AA"));
|
||||
EXPECT_EQ(254, lxw_get_col_2("AAA:IU"));
|
||||
EXPECT_EQ(255, lxw_get_col_2("AAA:IV"));
|
||||
EXPECT_EQ(256, lxw_get_col_2("AAA:IW"));
|
||||
EXPECT_EQ(16383, lxw_get_col_2("AAA:XFD"));
|
||||
EXPECT_EQ(16384, lxw_get_col_2("AAA:XFE"));
|
||||
}
|
30
test/unit/utility/test_xl_get_row.c
Normal file
30
test/unit/utility/test_xl_get_row.c
Normal file
@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Tests for the libxlsxwriter library.
|
||||
*
|
||||
* Copyright 2014, John McNamara, jmcnamara@cpan.org
|
||||
*
|
||||
*/
|
||||
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/utility.h"
|
||||
|
||||
// Test _xl_get_row().
|
||||
CTEST(utility, _xl_get_row) {
|
||||
|
||||
ASSERT_EQUAL(0, lxw_get_row("A1"));
|
||||
ASSERT_EQUAL(1, lxw_get_row("B2"));
|
||||
ASSERT_EQUAL(2, lxw_get_row("C3"));
|
||||
ASSERT_EQUAL(9, lxw_get_row("J10"));
|
||||
ASSERT_EQUAL(24, lxw_get_row("Y25"));
|
||||
ASSERT_EQUAL(25, lxw_get_row("Z26"));
|
||||
ASSERT_EQUAL(26, lxw_get_row("AA27"));
|
||||
ASSERT_EQUAL(254, lxw_get_row("IU255"));
|
||||
ASSERT_EQUAL(255, lxw_get_row("IV256"));
|
||||
ASSERT_EQUAL(256, lxw_get_row("IW257"));
|
||||
ASSERT_EQUAL(16383, lxw_get_row("XFD16384"));
|
||||
ASSERT_EQUAL(16384, lxw_get_row("XFE16385"));
|
||||
ASSERT_EQUAL(1048576, lxw_get_row("XFE1048577"));
|
||||
}
|
||||
|
@ -1,30 +0,0 @@
|
||||
/*
|
||||
* Tests for the libxlsxwriter library.
|
||||
*
|
||||
* Copyright 2014, John McNamara, jmcnamara@cpan.org
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/utility.h"
|
||||
|
||||
// Test _xl_get_row().
|
||||
TEST(utility, _xl_get_row) {
|
||||
|
||||
EXPECT_EQ(0, lxw_get_row("A1"));
|
||||
EXPECT_EQ(1, lxw_get_row("B2"));
|
||||
EXPECT_EQ(2, lxw_get_row("C3"));
|
||||
EXPECT_EQ(9, lxw_get_row("J10"));
|
||||
EXPECT_EQ(24, lxw_get_row("Y25"));
|
||||
EXPECT_EQ(25, lxw_get_row("Z26"));
|
||||
EXPECT_EQ(26, lxw_get_row("AA27"));
|
||||
EXPECT_EQ(254, lxw_get_row("IU255"));
|
||||
EXPECT_EQ(255, lxw_get_row("IV256"));
|
||||
EXPECT_EQ(256, lxw_get_row("IW257"));
|
||||
EXPECT_EQ(16383, lxw_get_row("XFD16384"));
|
||||
EXPECT_EQ(16384, lxw_get_row("XFE16385"));
|
||||
EXPECT_EQ(1048576, lxw_get_row("XFE1048577"));
|
||||
}
|
||||
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/utility.h"
|
||||
|
||||
// Test xl_range().
|
||||
TEST(utility, lxw_range) {
|
||||
CTEST(utility, lxw_range) {
|
||||
|
||||
char got[MAX_CELL_RANGE_LENGTH];
|
||||
|
||||
@ -32,7 +32,7 @@ TEST(utility, lxw_range) {
|
||||
}
|
||||
|
||||
// Test xl_range_abs().
|
||||
TEST(utility, lxw_range_abs) {
|
||||
CTEST(utility, lxw_range_abs) {
|
||||
|
||||
char got[MAX_CELL_RANGE_LENGTH];
|
||||
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/utility.h"
|
||||
|
||||
// Test xl_rowcol_to_cell().
|
||||
TEST(utility, lxw_rowcol_to_cell) {
|
||||
CTEST(utility, lxw_rowcol_to_cell) {
|
||||
|
||||
char got[MAX_CELL_NAME_LENGTH];
|
||||
|
||||
@ -33,7 +33,7 @@ TEST(utility, lxw_rowcol_to_cell) {
|
||||
}
|
||||
|
||||
// Test xl_rowcol_to_cell_abs().
|
||||
TEST(utility, lxw_rowcol_to_cell_abs) {
|
||||
CTEST(utility, lxw_rowcol_to_cell_abs) {
|
||||
|
||||
char got[MAX_CELL_NAME_LENGTH];
|
||||
|
15
test/unit/workbook/main.c
Normal file
15
test/unit/workbook/main.c
Normal file
@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Test runner for xmlwriter using ctest.
|
||||
*
|
||||
* Copyright 2014, John McNamara, jmcnamara@cpan.org
|
||||
*
|
||||
*/
|
||||
#define CTEST_MAIN
|
||||
|
||||
#include "../ctest.h"
|
||||
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
return ctest_main(argc, argv);
|
||||
}
|
||||
|
@ -5,14 +5,14 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/workbook.h"
|
||||
#include "xlsxwriter/shared_strings.h"
|
||||
|
||||
// Test assembling a complete Workbook file.
|
||||
TEST(workbook, workbook01) {
|
||||
CTEST(workbook, workbook01) {
|
||||
|
||||
char* got;
|
||||
char exp[] =
|
||||
@ -44,7 +44,7 @@ TEST(workbook, workbook01) {
|
||||
}
|
||||
|
||||
// Test assembling a complete Workbook file.
|
||||
TEST(workbook, workbook02) {
|
||||
CTEST(workbook, workbook02) {
|
||||
|
||||
char* got;
|
||||
char exp[] =
|
||||
@ -78,7 +78,7 @@ TEST(workbook, workbook02) {
|
||||
}
|
||||
|
||||
// Test assembling a complete Workbook file.
|
||||
TEST(workbook, workbook03) {
|
||||
CTEST(workbook, workbook03) {
|
||||
|
||||
char* got;
|
||||
char exp[] =
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/workbook.h"
|
||||
|
||||
// Test the _write_book_views() function.
|
||||
TEST(workbook, write_book_views) {
|
||||
CTEST(workbook, write_book_views) {
|
||||
|
||||
|
||||
char* got;
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/workbook.h"
|
||||
|
||||
// Test the _write_calc_pr() function.
|
||||
TEST(workbook, write_calc_pr) {
|
||||
CTEST(workbook, write_calc_pr) {
|
||||
|
||||
|
||||
char* got;
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/workbook.h"
|
||||
|
||||
// Test the _write_file_version() function.
|
||||
TEST(workbook, write_file_version) {
|
||||
CTEST(workbook, write_file_version) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<fileVersion appName=\"xl\" lastEdited=\"4\" lowestEdited=\"4\" rupBuild=\"4505\"/>";
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/workbook.h"
|
||||
|
||||
// Test the _write_sheet() function.
|
||||
TEST(workbook, write_sheet1) {
|
||||
CTEST(workbook, write_sheet1) {
|
||||
|
||||
|
||||
char* got;
|
||||
@ -29,7 +29,7 @@ TEST(workbook, write_sheet1) {
|
||||
}
|
||||
|
||||
// Test the _write_sheet() function.
|
||||
TEST(workbook, write_sheet2) {
|
||||
CTEST(workbook, write_sheet2) {
|
||||
|
||||
|
||||
char* got;
|
||||
@ -47,7 +47,7 @@ TEST(workbook, write_sheet2) {
|
||||
}
|
||||
|
||||
// Test the _write_sheet() function.
|
||||
TEST(workbook, write_sheet3) {
|
||||
CTEST(workbook, write_sheet3) {
|
||||
|
||||
|
||||
char* got;
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/workbook.h"
|
||||
|
||||
// Test the _write_sheets() function.
|
||||
TEST(workbook, write_sheets) {
|
||||
CTEST(workbook, write_sheets) {
|
||||
|
||||
|
||||
char* got;
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/workbook.h"
|
||||
|
||||
// Test the _write_workbook() function.
|
||||
TEST(workbook, write_workbook) {
|
||||
CTEST(workbook, write_workbook) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<workbook xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" xmlns:r=\"http://schemas.openxmlformats.org/officeDocument/2006/relationships\">";
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/workbook.h"
|
||||
|
||||
// Test the _write_workbook_pr() function.
|
||||
TEST(workbook, write_workbook_pr) {
|
||||
CTEST(workbook, write_workbook_pr) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<workbookPr defaultThemeVersion=\"124226\"/>";
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/workbook.h"
|
||||
|
||||
// Test the _write_workbook_view() function.
|
||||
TEST(workbook, write_workbook_view1) {
|
||||
CTEST(workbook, write_workbook_view1) {
|
||||
|
||||
|
||||
char* got;
|
||||
@ -29,7 +29,7 @@ TEST(workbook, write_workbook_view1) {
|
||||
}
|
||||
|
||||
// Test the _write_workbook_view() function.
|
||||
TEST(workbook, write_workbook_view2) {
|
||||
CTEST(workbook, write_workbook_view2) {
|
||||
|
||||
|
||||
char* got;
|
||||
@ -49,7 +49,7 @@ TEST(workbook, write_workbook_view2) {
|
||||
}
|
||||
|
||||
// Test the _write_workbook_view() function.
|
||||
TEST(workbook, write_workbook_view3) {
|
||||
CTEST(workbook, write_workbook_view3) {
|
||||
|
||||
|
||||
char* got;
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/workbook.h"
|
||||
|
||||
// Test _xml_declaration().
|
||||
TEST(workbook, xml_declaration) {
|
||||
CTEST(workbook, xml_declaration) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n";
|
15
test/unit/worksheet/main.c
Normal file
15
test/unit/worksheet/main.c
Normal file
@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Test runner for xmlwriter using ctest.
|
||||
*
|
||||
* Copyright 2014, John McNamara, jmcnamara@cpan.org
|
||||
*
|
||||
*/
|
||||
#define CTEST_MAIN
|
||||
|
||||
#include "../ctest.h"
|
||||
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
return ctest_main(argc, argv);
|
||||
}
|
||||
|
@ -5,14 +5,14 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/worksheet.h"
|
||||
#include "xlsxwriter/shared_strings.h"
|
||||
|
||||
// Test assembling a complete Worksheet file.
|
||||
TEST(worksheet, worksheet01) {
|
||||
CTEST(worksheet, worksheet01) {
|
||||
|
||||
char* got;
|
||||
char exp[] =
|
||||
@ -41,7 +41,7 @@ TEST(worksheet, worksheet01) {
|
||||
}
|
||||
|
||||
// Test assembling a complete Worksheet file.
|
||||
TEST(worksheet, worksheet02) {
|
||||
CTEST(worksheet, worksheet02) {
|
||||
|
||||
char* got;
|
||||
char exp[] =
|
||||
@ -78,7 +78,7 @@ TEST(worksheet, worksheet02) {
|
||||
}
|
||||
|
||||
// Test assembling a complete Worksheet file.
|
||||
TEST(worksheet, worksheet03) {
|
||||
CTEST(worksheet, worksheet03) {
|
||||
|
||||
char* got;
|
||||
char exp[] =
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/worksheet.h"
|
||||
|
||||
// Test assembling a Worksheet file with different span ranges.
|
||||
TEST(worksheet, spans01) {
|
||||
CTEST(worksheet, spans01) {
|
||||
|
||||
char* got;
|
||||
char exp[] =
|
||||
@ -48,7 +48,7 @@ TEST(worksheet, spans01) {
|
||||
}
|
||||
|
||||
// Test assembling a Worksheet file with different span ranges.
|
||||
TEST(worksheet, spans02) {
|
||||
CTEST(worksheet, spans02) {
|
||||
|
||||
char* got;
|
||||
char exp[] =
|
||||
@ -85,7 +85,7 @@ TEST(worksheet, spans02) {
|
||||
}
|
||||
|
||||
// Test assembling a Worksheet file with different span ranges.
|
||||
TEST(worksheet, spans03) {
|
||||
CTEST(worksheet, spans03) {
|
||||
|
||||
char* got;
|
||||
char exp[] =
|
||||
@ -122,7 +122,7 @@ TEST(worksheet, spans03) {
|
||||
}
|
||||
|
||||
// Test assembling a Worksheet file with different span ranges.
|
||||
TEST(worksheet, spans04) {
|
||||
CTEST(worksheet, spans04) {
|
||||
|
||||
char* got;
|
||||
char exp[] =
|
||||
@ -159,7 +159,7 @@ TEST(worksheet, spans04) {
|
||||
}
|
||||
|
||||
// Test assembling a Worksheet file with different span ranges.
|
||||
TEST(worksheet, spans05) {
|
||||
CTEST(worksheet, spans05) {
|
||||
|
||||
char* got;
|
||||
char exp[] =
|
||||
@ -292,7 +292,7 @@ TEST(worksheet, spans05) {
|
||||
}
|
||||
|
||||
// Test some out of bound writes.
|
||||
TEST(worksheet, spans06) {
|
||||
CTEST(worksheet, spans06) {
|
||||
|
||||
int err;
|
||||
FILE* testfile = tmpfile();
|
||||
@ -302,13 +302,13 @@ TEST(worksheet, spans06) {
|
||||
worksheet->selected = 1;
|
||||
|
||||
err = worksheet_write_number(worksheet, 0, 16384, 123, NULL);
|
||||
ASSERT_EQ(LXW_RANGE_ERROR, err);
|
||||
ASSERT_EQUAL(LXW_RANGE_ERROR, err);
|
||||
|
||||
err = worksheet_write_number(worksheet, 1048576, 0, 123, NULL);
|
||||
ASSERT_EQ(LXW_RANGE_ERROR, err);
|
||||
ASSERT_EQUAL(LXW_RANGE_ERROR, err);
|
||||
|
||||
err = worksheet_write_number(worksheet, 1048576, 16384, 123, NULL);
|
||||
ASSERT_EQ(LXW_RANGE_ERROR, err);
|
||||
ASSERT_EQUAL(LXW_RANGE_ERROR, err);
|
||||
|
||||
_worksheet_assemble_xml_file(worksheet);
|
||||
|
@ -5,14 +5,14 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/worksheet.h"
|
||||
#include "xlsxwriter/format.h"
|
||||
|
||||
// Test the _write_col_info() function.
|
||||
TEST(worksheet, write_col_info01) {
|
||||
CTEST(worksheet, write_col_info01) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<col min=\"2\" max=\"4\" width=\"5.7109375\" customWidth=\"1\"/>";
|
||||
@ -30,7 +30,7 @@ TEST(worksheet, write_col_info01) {
|
||||
}
|
||||
|
||||
|
||||
TEST(worksheet, write_col_info02) {
|
||||
CTEST(worksheet, write_col_info02) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<col min=\"6\" max=\"6\" width=\"8.7109375\" hidden=\"1\" customWidth=\"1\"/>";
|
||||
@ -48,7 +48,7 @@ TEST(worksheet, write_col_info02) {
|
||||
}
|
||||
|
||||
|
||||
TEST(worksheet, write_col_info03) {
|
||||
CTEST(worksheet, write_col_info03) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<col min=\"8\" max=\"8\" width=\"9.140625\" style=\"1\"/>";
|
||||
@ -70,7 +70,7 @@ TEST(worksheet, write_col_info03) {
|
||||
}
|
||||
|
||||
|
||||
TEST(worksheet, write_col_info04) {
|
||||
CTEST(worksheet, write_col_info04) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<col min=\"9\" max=\"9\" width=\"9.140625\" style=\"1\"/>";
|
||||
@ -92,7 +92,7 @@ TEST(worksheet, write_col_info04) {
|
||||
}
|
||||
|
||||
|
||||
TEST(worksheet, write_col_info05) {
|
||||
CTEST(worksheet, write_col_info05) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<col min=\"10\" max=\"10\" width=\"2.7109375\" customWidth=\"1\"/>";
|
||||
@ -110,7 +110,7 @@ TEST(worksheet, write_col_info05) {
|
||||
}
|
||||
|
||||
|
||||
TEST(worksheet, write_col_info06) {
|
||||
CTEST(worksheet, write_col_info06) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<col min=\"12\" max=\"12\" width=\"0\" hidden=\"1\" customWidth=\"1\"/>";
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/worksheet.h"
|
||||
|
||||
// Test the _write_dimension() function.
|
||||
TEST(worksheet, write_dimension) {
|
||||
CTEST(worksheet, write_dimension) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<dimension ref=\"A1\"/>";
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/worksheet.h"
|
||||
|
||||
// Test the _write_page_margins() function.
|
||||
TEST(worksheet, write_page_margins) {
|
||||
CTEST(worksheet, write_page_margins) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<pageMargins left=\"0.7\" right=\"0.7\" top=\"0.75\" bottom=\"0.75\" header=\"0.3\" footer=\"0.3\"/>";
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/worksheet.h"
|
||||
|
||||
// Test the _write_row() function.
|
||||
TEST(worksheet, write_row) {
|
||||
CTEST(worksheet, write_row) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<row r=\"1\"/>";
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/worksheet.h"
|
||||
|
||||
// Test the _write_sheet_data() function.
|
||||
TEST(worksheet, write_sheet_data) {
|
||||
CTEST(worksheet, write_sheet_data) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<sheetData/>";
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/worksheet.h"
|
||||
|
||||
// Test the _write_sheet_format_pr() function.
|
||||
TEST(worksheet, write_sheet_format_pr) {
|
||||
CTEST(worksheet, write_sheet_format_pr) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<sheetFormatPr defaultRowHeight=\"15\"/>";
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/worksheet.h"
|
||||
|
||||
// Test the _write_sheet_view() function.
|
||||
TEST(worksheet, write_sheet_view) {
|
||||
CTEST(worksheet, write_sheet_view) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<sheetView tabSelected=\"1\" workbookViewId=\"0\"/>";
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/worksheet.h"
|
||||
|
||||
// Test the _write_sheet_views() function.
|
||||
TEST(worksheet, write_sheet_views) {
|
||||
CTEST(worksheet, write_sheet_views) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<sheetViews><sheetView tabSelected=\"1\" workbookViewId=\"0\"/></sheetViews>";
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/worksheet.h"
|
||||
|
||||
// Test _xml_declaration().
|
||||
TEST(worksheet, xml_declaration) {
|
||||
CTEST(worksheet, xml_declaration) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n";
|
15
test/unit/xmlwriter/main.c
Normal file
15
test/unit/xmlwriter/main.c
Normal file
@ -0,0 +1,15 @@
|
||||
/*
|
||||
* Test runner for xmlwriter using ctest.
|
||||
*
|
||||
* Copyright 2014, John McNamara, jmcnamara@cpan.org
|
||||
*
|
||||
*/
|
||||
#define CTEST_MAIN
|
||||
|
||||
#include "../ctest.h"
|
||||
|
||||
int main(int argc, const char *argv[])
|
||||
{
|
||||
return ctest_main(argc, argv);
|
||||
}
|
||||
|
@ -5,13 +5,13 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "../ctest.h"
|
||||
#include "../helper.h"
|
||||
|
||||
#include "xlsxwriter/xmlwriter.h"
|
||||
|
||||
// Test _xml_declaration().
|
||||
TEST(xmlwriter, xml_declaration) {
|
||||
CTEST(xmlwriter, xml_declaration) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n";
|
||||
@ -23,7 +23,7 @@ TEST(xmlwriter, xml_declaration) {
|
||||
}
|
||||
|
||||
// Test _xml_start_tag() with no attributes.
|
||||
TEST(xmlwriter, xml_start_tag) {
|
||||
CTEST(xmlwriter, xml_start_tag) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<foo>";
|
||||
@ -35,7 +35,7 @@ TEST(xmlwriter, xml_start_tag) {
|
||||
}
|
||||
|
||||
// Test _xml_start_tag() with attributes.
|
||||
TEST(xmlwriter, xml_start_tag_with_attributes) {
|
||||
CTEST(xmlwriter, xml_start_tag_with_attributes) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<foo span=\"8\" baz=\"7\">";
|
||||
@ -55,7 +55,7 @@ TEST(xmlwriter, xml_start_tag_with_attributes) {
|
||||
}
|
||||
|
||||
// Test _xml_start_tag() with attributes requiring escaping.
|
||||
TEST(xmlwriter, xml_start_tag_with_attributes_to_escape) {
|
||||
CTEST(xmlwriter, xml_start_tag_with_attributes_to_escape) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<foo span=\"&<>"\">";
|
||||
@ -74,7 +74,7 @@ TEST(xmlwriter, xml_start_tag_with_attributes_to_escape) {
|
||||
}
|
||||
|
||||
// Test _xml_start_tag_unencoded() with attributes.
|
||||
TEST(xmlwriter, xml_start_tag_unencoded) {
|
||||
CTEST(xmlwriter, xml_start_tag_unencoded) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<foo span=\"&<>\"\">";
|
||||
@ -93,7 +93,7 @@ TEST(xmlwriter, xml_start_tag_unencoded) {
|
||||
}
|
||||
|
||||
// Test _xml_end_tag().
|
||||
TEST(xmlwriter, xml_end_tag) {
|
||||
CTEST(xmlwriter, xml_end_tag) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "</foo>";
|
||||
@ -105,7 +105,7 @@ TEST(xmlwriter, xml_end_tag) {
|
||||
}
|
||||
|
||||
// Test _xml_empty_tag() with no attributes.
|
||||
TEST(xmlwriter, xml_empty_tag) {
|
||||
CTEST(xmlwriter, xml_empty_tag) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<foo/>";
|
||||
@ -117,7 +117,7 @@ TEST(xmlwriter, xml_empty_tag) {
|
||||
}
|
||||
|
||||
// Test _xml_empty_tag() with attributes.
|
||||
TEST(xmlwriter, xml_empty_tag_with_attributes) {
|
||||
CTEST(xmlwriter, xml_empty_tag_with_attributes) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<foo span=\"8\" baz=\"7\"/>";
|
||||
@ -137,7 +137,7 @@ TEST(xmlwriter, xml_empty_tag_with_attributes) {
|
||||
}
|
||||
|
||||
// Test _xml_empty_tag() with attributes requiring escaping.
|
||||
TEST(xmlwriter, xml_empty_tag_with_attributes_to_escape) {
|
||||
CTEST(xmlwriter, xml_empty_tag_with_attributes_to_escape) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<foo span=\"&<>"\"/>";
|
||||
@ -156,7 +156,7 @@ TEST(xmlwriter, xml_empty_tag_with_attributes_to_escape) {
|
||||
}
|
||||
|
||||
// Test _xml_empty_tag_unencoded() with attributes.
|
||||
TEST(xmlwriter, xml_empty_tag_unencoded) {
|
||||
CTEST(xmlwriter, xml_empty_tag_unencoded) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<foo span=\"&<>\"\"/>";
|
||||
@ -175,7 +175,7 @@ TEST(xmlwriter, xml_empty_tag_unencoded) {
|
||||
}
|
||||
|
||||
// Test _xml_empty_tag() with no attributes.
|
||||
TEST(xmlwriter, xml_data_element) {
|
||||
CTEST(xmlwriter, xml_data_element) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<foo>bar</foo>";
|
||||
@ -187,7 +187,7 @@ TEST(xmlwriter, xml_data_element) {
|
||||
}
|
||||
|
||||
// Test _xml_data_element() with attributes.
|
||||
TEST(xmlwriter, xml_data_element_with_attributes) {
|
||||
CTEST(xmlwriter, xml_data_element_with_attributes) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<foo span=\"8\">bar</foo>";
|
||||
@ -206,7 +206,7 @@ TEST(xmlwriter, xml_data_element_with_attributes) {
|
||||
}
|
||||
|
||||
// Test _xml_data_element() with data requiring escaping.
|
||||
TEST(xmlwriter, xml_data_element_with_escapes) {
|
||||
CTEST(xmlwriter, xml_data_element_with_escapes) {
|
||||
|
||||
char* got;
|
||||
char exp[] = "<foo span=\"8\">&<>\"</foo>";
|
Loading…
x
Reference in New Issue
Block a user