From cf6f1daf5a370abdc3af336c6bcfa853fb65e452 Mon Sep 17 00:00:00 2001 From: Ralf Habacker Date: Tue, 3 Nov 2015 00:23:56 +0100 Subject: [PATCH] Test system bus config files on Unix only Previously, we didn't consistently test parsing of every file in valid-config-files-system/ everywhere that we tested valid-config-files/. We now test it on Unix. The system bus is not supported on Windows, so we do not test valid-config-files-system/ there. valid-config-files/many-rules.conf contains and rules which are not applicable to Windows. Copy the original many-rules.conf to valid-config-files-system/ so that it will be tested on Unix, and remove the non-portable rules from valid-config-files/many-rules.conf. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=92721 --- bus/config-parser-trivial.c | 11 +++- bus/config-parser.c | 5 ++ cmake/test/CMakeLists.txt | 26 +++------- test/Makefile.am | 12 +++-- .../data/valid-config-files-system/many-rules.conf | 60 ++++++++++++++++++++++ .../valid-config-files-system/system.d/test.conf | 20 ++++++++ test/data/valid-config-files/.gitignore | 1 - test/data/valid-config-files/many-rules.conf | 4 -- test/data/valid-config-files/system.d/test.conf | 20 -------- 9 files changed, 110 insertions(+), 49 deletions(-) create mode 100644 test/data/valid-config-files-system/many-rules.conf create mode 100644 test/data/valid-config-files-system/system.d/test.conf delete mode 100644 test/data/valid-config-files/system.d/test.conf diff --git a/bus/config-parser-trivial.c b/bus/config-parser-trivial.c index 64a05c3..03ad838 100644 --- a/bus/config-parser-trivial.c +++ b/bus/config-parser-trivial.c @@ -684,6 +684,13 @@ bus_config_parser_trivial_test (const DBusString *test_data_dir) if (!process_test_valid_subdir (test_data_dir, "valid-config-files", VALID)) goto finish; +#ifndef DBUS_WIN + /* We already test default_session_servicedirs and default_system_servicedirs + * in bus_config_parser_test() */ + if (!process_test_valid_subdir (test_data_dir, "valid-config-files-system", VALID)) + goto finish; +#endif + /* we don't process all the invalid files, as the trivial parser can't hope * to validate them all for all different syntaxes. We just check one broken * file to see if junk is received */ @@ -693,14 +700,16 @@ bus_config_parser_trivial_test (const DBusString *test_data_dir) goto finish; _dbus_string_free (&full_path); +#ifndef DBUS_WIN /* just test if the check_file_valid works okay and we got sane values */ - if (!make_full_path (test_data_dir, "valid-config-files", "system.conf", &full_path)) + if (!make_full_path (test_data_dir, "valid-config-files-system", "system.conf", &full_path)) goto finish; if (!check_file_valid (&full_path, VALID)) goto finish; /* check to see if we got the correct values from the parser */ if (!check_return_values (&full_path)) goto finish; +#endif /* woot! */ retval = TRUE; diff --git a/bus/config-parser.c b/bus/config-parser.c index 1925d43..d9f6042 100644 --- a/bus/config-parser.c +++ b/bus/config-parser.c @@ -3680,6 +3680,11 @@ bus_config_parser_test (const DBusString *test_data_dir) if (!process_test_valid_subdir (test_data_dir, "valid-config-files", VALID)) return FALSE; +#ifndef DBUS_WIN + if (!process_test_valid_subdir (test_data_dir, "valid-config-files-system", VALID)) + return FALSE; +#endif + if (!process_test_valid_subdir (test_data_dir, "invalid-config-files", INVALID)) return FALSE; diff --git a/cmake/test/CMakeLists.txt b/cmake/test/CMakeLists.txt index 1a12f5a..eb4b1f1 100644 --- a/cmake/test/CMakeLists.txt +++ b/cmake/test/CMakeLists.txt @@ -122,8 +122,8 @@ set (TESTDIRS test/data/valid-config-files test/data/valid-config-files/basic.d test/data/valid-config-files/session.d - test/data/valid-config-files/system.d test/data/valid-config-files-system + test/data/valid-config-files-system/system.d test/data/valid-introspection-files test/data/valid-messages test/data/valid-service-files @@ -140,13 +140,16 @@ set (TESTDIRS ) set (CONFIG_VERBOSE 0) +FOREACH(DIR ${TESTDIRS}) + FILE(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/${DIR}) +ENDFOREACH(DIR) + ### copy tests to builddir so that generated tests and static tests ### are all in one place. MESSAGE(STATUS "Copying test files to test directory") FOREACH(FILE_TYPE *.message *.message-raw *.auth-script *.sha1 *.txt *.conf *.service) FOREACH(DIR ${TESTDIRS}) FILE(GLOB FILES "${CMAKE_SOURCE_DIR}/../${DIR}/${FILE_TYPE}" ) - FILE(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/${DIR}) FOREACH(FILE ${FILES}) GET_FILENAME_COMPONENT(FILENAME ${FILE} NAME) SET (TARGET ${CMAKE_BINARY_DIR}/${DIR}/${FILENAME}) @@ -164,7 +167,6 @@ MESSAGE(STATUS "Generating test files from templates into test directory") FOREACH(FILE_TYPE *.conf.in *.service.in) FOREACH(DIR ${TESTDIRS}) FILE(GLOB FILES "${CMAKE_SOURCE_DIR}/../${DIR}/${FILE_TYPE}" ) - FILE(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/${DIR}) FOREACH(FILE ${FILES}) GET_FILENAME_COMPONENT(FILENAME ${FILE} NAME) STRING(REGEX REPLACE "\\.in$" "" FILENAME ${FILENAME}) @@ -178,19 +180,5 @@ FOREACH(FILE_TYPE *.conf.in *.service.in) ENDFOREACH(FILE_TYPE) MESSAGE(STATUS "Copying generated bus config files to test directory") -set (OUTDIR ${CMAKE_BINARY_DIR}/test/data/valid-config-files) - -SET(FILES - "${CMAKE_SOURCE_DIR}/../bus/session.conf.in" - "${CMAKE_SOURCE_DIR}/../bus/system.conf.in" -) -FILE(MAKE_DIRECTORY ${OUTDIR}) -FOREACH(FILE ${FILES}) - GET_FILENAME_COMPONENT(FILENAME ${FILE} NAME) - STRING(REGEX REPLACE "\\.in$" "" FILENAME ${FILENAME}) - SET (TARGET ${OUTDIR}/${FILENAME}) - configure_file(${FILE} ${TARGET} @ONLY) - IF (CONFIG_VERBOSE) - MESSAGE("FROM: ${FILE}\nTO: ${TARGET}\n") - ENDIF (CONFIG_VERBOSE) -ENDFOREACH(FILE) +configure_file("${CMAKE_SOURCE_DIR}/../bus/session.conf.in" ${CMAKE_BINARY_DIR}/test/data/valid-config-files/session.conf @ONLY) +configure_file("${CMAKE_SOURCE_DIR}/../bus/system.conf.in" ${CMAKE_BINARY_DIR}/test/data/valid-config-files-system/system.conf @ONLY) diff --git a/test/Makefile.am b/test/Makefile.am index 5812c1a..b7f40bb 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -384,7 +384,7 @@ static_data = \ data/valid-config-files/entities.conf \ data/valid-config-files/listen-unix-runtime.conf \ data/valid-config-files/many-rules.conf \ - data/valid-config-files/system.d/test.conf \ + data/valid-config-files-system/system.d/test.conf \ data/valid-messages/array-of-array-of-uint32.message \ data/valid-messages/dict-simple.message \ data/valid-messages/dict.message \ @@ -468,7 +468,7 @@ if DBUS_ENABLE_INSTALLED_TESTS install -m644 "installable/$${F%.in}" "$(DESTDIR)$(testexecdir)/$${F%.in}"; \ done ln -nfs $(datadir)/dbus-1/session.conf $(DESTDIR)$(testexecdir)/data/valid-config-files/session.conf - ln -nfs $(datadir)/dbus-1/system.conf $(DESTDIR)$(testexecdir)/data/valid-config-files/system.conf + ln -nfs $(datadir)/dbus-1/system.conf $(DESTDIR)$(testexecdir)/data/valid-config-files-system/system.conf else @: endif @@ -486,7 +486,7 @@ clean-local: imported_data = \ data/valid-config-files/session.conf \ - data/valid-config-files/system.conf \ + data/valid-config-files-system/system.conf \ $(NULL) noinst_DATA = $(imported_data) @@ -496,10 +496,14 @@ CLEANFILES += \ installable \ $(NULL) -$(imported_data): data/valid-config-files/%.conf: $(top_builddir)/bus/%.conf +data/valid-config-files/session.conf: $(top_builddir)/bus/session.conf $(AM_V_at)$(MKDIR_P) data/valid-config-files $(AM_V_GEN)cp $< $@ +data/valid-config-files-system/system.conf: $(top_builddir)/bus/system.conf + $(AM_V_at)$(MKDIR_P) data/valid-config-files-system + $(AM_V_GEN)cp $< $@ + $(installable_test_meta): %.test: %$(EXEEXT) Makefile $(AM_V_GEN) ( \ echo '[Test]'; \ diff --git a/test/data/valid-config-files-system/many-rules.conf b/test/data/valid-config-files-system/many-rules.conf new file mode 100644 index 0000000..8537fd9 --- /dev/null +++ b/test/data/valid-config-files-system/many-rules.conf @@ -0,0 +1,60 @@ + + + mybususer + unix:path=/foo/bar + tcp:port=1234 + basic.d + + /usr/share/foo + nonexistent.conf + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 5000 + 5000 + 300 + 5000 + 6000 + 50 + 80 + 64 + 64 + 256 + 512 + diff --git a/test/data/valid-config-files-system/system.d/test.conf b/test/data/valid-config-files-system/system.d/test.conf new file mode 100644 index 0000000..ee6afcd --- /dev/null +++ b/test/data/valid-config-files-system/system.d/test.conf @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + diff --git a/test/data/valid-config-files/.gitignore b/test/data/valid-config-files/.gitignore index 2a09552..b692909 100644 --- a/test/data/valid-config-files/.gitignore +++ b/test/data/valid-config-files/.gitignore @@ -2,6 +2,5 @@ debug-allow-all.conf debug-allow-all-sha1.conf incoming-limit.conf session.conf -system.conf run-with-tmp-session-bus.conf finite-timeout.conf diff --git a/test/data/valid-config-files/many-rules.conf b/test/data/valid-config-files/many-rules.conf index 2393162..df9a994 100644 --- a/test/data/valid-config-files/many-rules.conf +++ b/test/data/valid-config-files/many-rules.conf @@ -17,8 +17,6 @@ - - @@ -36,8 +34,6 @@ - - diff --git a/test/data/valid-config-files/system.d/test.conf b/test/data/valid-config-files/system.d/test.conf deleted file mode 100644 index 5b60a1f..0000000 --- a/test/data/valid-config-files/system.d/test.conf +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - -- 1.8.4.5