#!/bin/sh # # aegis - project change supervisor. # Copyright (C) 2012, 2013 Peter Miller # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or (at # your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program. If not, see . # TEST_SUBJECT="aemakegen po/*.po" # load up standard prelude and test functions . test_funcs AEGIS_PROJECT=i18ntest export AEGIS_PROJECT activity="new project 28" aegis -npr ${AEGIS_PROJECT} -version - -v -dir $work/proj.dir \ -lib $AEGIS_PATH > log 2>&1 if test $? -ne 0 ; then cat log; no_result; fi activity="project attributes 33" cat > paf << fubar developer_may_review = true; developer_may_integrate = true; reviewer_may_integrate = true; default_test_exemption = true; develop_end_action = goto_awaiting_integration; default_development_directory = "$work"; fubar if test $? -ne 0 ; then no_result; fi aegis -pa -f paf -v > log 2>&1 if test $? -ne 0 ; then cat log; no_result; fi activity="staff 46" aegis -nd $USER -v > log 2>&1 if test $? -ne 0 ; then cat log; no_result; fi aegis -nrv $USER -v > log 2>&1 if test $? -ne 0 ; then cat log; no_result; fi aegis -ni $USER -v > log 2>&1 if test $? -ne 0 ; then cat log; no_result; fi activity="new change 54" cat > caf << 'fubar' brief_description = "one"; cause = internal_enhancement; test_baseline_exempt = true; fubar if test $? -ne 0 ; then no_result; fi aegis -nc -f caf -v -p $AEGIS_PROJECT > log 2>&1 if test $? -ne 0 ; then cat log; no_result; fi activity="develop begin 64" aegis -db 10 -v > log 2>&1 if test $? -ne 0 ; then cat log; no_result; fi activity="new file 68" aegis -nf \ $work/${AEGIS_PROJECT}.C010/aegis.conf \ $work/${AEGIS_PROJECT}.C010/barney/main.c \ $work/${AEGIS_PROJECT}.C010/configure.ac \ $work/${AEGIS_PROJECT}.C010/po/ru.po \ -v > log 2>&1 if test $? -ne 0 ; then cat log; no_result; fi cat > $work/${AEGIS_PROJECT}.C010/configure.ac << 'fubar' AC_CHECK_PROGS(MSGFMT, gmsgfmt msgfmt) AC_CHECK_PROGS(MSGCAT, gmsgcat msgcat) AC_SUBST(NLSDIR) fubar if test $? -ne 0 ; then no_result; fi cat > $work/${AEGIS_PROJECT}.C010/aegis.conf << 'fubar' build_command = "exit 0"; history_get_command = "aesvt -check-out -edit ${quote $edit} " "-history ${quote $history} -f ${quote $output}"; history_put_command = "aesvt -check-in -history ${quote $history} " "-f ${quote $input}"; history_query_command = "aesvt -query -history ${quote $history}"; history_content_limitation = binary_capable; diff_command = "set +e; diff $orig $i > $out; test $$? -le 1"; diff3_command = "(diff3 -e $mr $orig $i | sed -e '/^w$$/d' -e '/^q$$/d'; \ echo '1,$$p' ) | ed - $mr > $out"; link_integration_directory = true; test_command = "$sh $filename $arch"; project_specific = [ { name = "aemakegen:debian:maintainer"; value = "maintainer@example.com"; }, ]; fubar if test $? -ne 0 ; then no_result; fi TAB=`awk 'BEGIN{printf("%c", 9)}' /dev/null` # ---------- makefile ---------------------------------------------------- activity="aemakegen 116" aemakegen -c 10 --target=makefile > test.out if test $? -ne 0 ; then fail; fi activity="check makefile 120" sed "s|{TAB}|${TAB}|g" > ok << 'fubar' # # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! # # W W A RRRR N N III N N III N N GGG # W W A A R R NN N I NN N I NN N G G # W W A A RRRR N N N I N N N I N N N G # W W W AAAAA R R N NN I N NN I N NN G GG # W W W A A R R N N I N N I N N G G # W W A A R R N N III N N III N N GGG # # Warning: DO NOT send patches which fix this file. IT IS NOT the original # source file. This file is GENERATED from the Aegis repository file manifest. # If you find a bug in this file, it could well be an Aegis bug. # # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! # # # @configure_input@ # # The configure script generates 2 files: # 1. This Makefile # 2. /config.h # If you change this Makefile, you may also need to change these files. To see # what is configured by the configure script, search for @ in the Makefile.in # file. # # If you wish to reconfigure the installations directories it is RECOMMENDED # that you re-run the configure script. # # Use "./configure --help" for a list of options. # # # directory containing the source # srcdir = @srcdir@ VPATH = @srcdir@ # # the name of the install program to use # INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_DIR = @INSTALL@ -m 0755 -d # # The name of the C compiler to use. # CC = @CC@ # # The C compiler flags to use. # CFLAGS = @CFLAGS@ # # The C preprocessor flags to use. # CPPFLAGS = @CPPFLAGS@ # # The linker flags to use # LDFLAGS = @LDFLAGS@ # # prefix for installation path # prefix = @prefix@ exec_prefix = @exec_prefix@ # # Where to put the executables. # # On a network, this would only be shared between machines of identical # cpu-hw-os flavour. It can be read-only. # # The $(DESTDIR) is for packaging. # bindir = $(DESTDIR)@bindir@ # define this to silence ./configure warning datarootdir = $(DESTDIR)@datarootdir@ # # ${NLSDIR} is for locale files # # This is where the binary error message translation files (.mo) are to be # installed. # # The $(DESTDIR) is for packaging. # NLSDIR = $(DESTDIR)@NLSDIR@ # # The program to be used to translate source error message translation .po files # into binary error message translation .mo files. It is usually called "msgfmt" # or "gmsgfmt". # MSGFMT = @MSGFMT@ # # The program to be used to join, combine and merge source error message # translation .po files. It is usually called "msgcat" or "gmsgcat". # MSGCAT = @MSGCAT@ # # extra libraries required for your system # LIBS = @LIBS@ # # shell to use to run tests and commands # SH = @SH@ # --------------------------------------------------------- # You should not need to change anything below this line. # # The default target # the-default-target: all barney/main.o: barney/main.c {TAB}$(CC) $(CPPFLAGS) $(CFLAGS) -I. -c barney/main.c {TAB}mv main.o $@ po/ru.mo: po/ru.po {TAB}$(MSGFMT) -o $@ po/ru.po $(NLSDIR)/ru/LC_MESSAGES/i18ntest.mo: .mkdir.__NLSDIR__ru_LC_MESSAGES po/ru.mo {TAB}$(INSTALL_DATA) po/ru.mo $@ .mkdir.__NLSDIR_: {TAB}-$(INSTALL_DIR) $(NLSDIR) {TAB}@-test -d $(NLSDIR) && touch $@ {TAB}@sleep 1 .mkdir.__NLSDIR__ru: .mkdir.__NLSDIR_ {TAB}-$(INSTALL_DIR) $(NLSDIR)/ru {TAB}@-test -d $(NLSDIR)/ru && touch $@ {TAB}@sleep 1 .mkdir.__NLSDIR__ru_LC_MESSAGES: .mkdir.__NLSDIR__ru {TAB}-$(INSTALL_DIR) $(NLSDIR)/ru/LC_MESSAGES {TAB}@-test -d $(NLSDIR)/ru/LC_MESSAGES && touch $@ {TAB}@sleep 1 .mkdir.__bindir_: {TAB}-$(INSTALL_DIR) $(bindir) {TAB}@-test -d $(bindir) && touch $@ {TAB}@sleep 1 # # The barney program. # barney_obj = barney/main.o bin/barney: $(barney_obj) .bin {TAB}$(CC) $(CPPFLAGS) $(CFLAGS) -o $@ $(barney_obj) $(LDFLAGS) $(LIBS) $(bindir)/barney: .mkdir.__bindir_ bin/barney {TAB}$(INSTALL_PROGRAM) bin/barney $@ all: all-bin all-i18n all-bin: bin/barney all-i18n: po/ru.mo .bin: {TAB}-mkdir bin {TAB}-chmod 0755 bin {TAB}@-test -d bin && touch $@ {TAB}@sleep 1 check: sure sure: {TAB}@echo Passed All Tests clean: clean-bin clean-i18n clean-misc clean-obj clean-bin: {TAB}rm -f bin/barney clean-i18n: {TAB}rm -f po/ru.mo clean-misc: {TAB}rm -f .bin .mkdir.__NLSDIR_ .mkdir.__NLSDIR__ru {TAB}rm -f .mkdir.__NLSDIR__ru_LC_MESSAGES .mkdir.__bindir_ core clean-obj: {TAB}rm -f barney/main.o distclean: clean distclean-directories distclean-files distclean-files: {TAB}rm -f Makefile config.cache config.log config.status distclean-directories: {TAB}rm -rf bin install: install-bin install-i18n install-bin: $(bindir)/barney install-i18n: $(NLSDIR)/ru/LC_MESSAGES/i18ntest.mo uninstall: {TAB}rm -f $(NLSDIR)/ru/LC_MESSAGES/i18ntest.mo $(bindir)/barney .PHONY: all all-bin all-i18n check clean clean-bin clean-i18n distclean \ {TAB}{TAB}distclean-directories distclean-files install install-bin \ {TAB}{TAB}install-i18n sure the-default-target # vim: set ts=8 sw=8 noet : fubar if test $? -ne 0 ; then no_result; fi diff -u ok test.out if test $? -ne 0 ; then fail; fi # ---------- automake ---------------------------------------------------- activity="aemakegen 355" aemakegen -c 10 --target=automake > test.out if test $? -ne 0 ; then fail; fi activity="check automake 359" sed "s|{TAB}|${TAB}|g" > ok << 'fubar' # # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! # # W W A RRRR N N III N N III N N GGG # W W A A R R NN N I NN N I NN N G G # W W A A RRRR N N N I N N N I N N N G # W W W AAAAA R R N NN I N NN I N NN G GG # W W W A A R R N N I N N I N N G G # W W A A R R N N III N N III N N GGG # # Warning: DO NOT send patches which fix this file. IT IS NOT the original # source file. This file is GENERATED from the Aegis repository file manifest. # If you find a bug in this file, it could well be an Aegis bug. # # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! # # # Tell automake to put the object file for foo/bar.cc in directory foo/ # AUTOMAKE_OPTIONS = subdir-objects # executables to be installed bin_PROGRAMS = bin/barney # Data to be installed below $(datarootdir)/ data_DATA = $(NLSDIR)/ru/LC_MESSAGES/i18ntest.mo # The barney program. bin_barney_SOURCES = barney/main.c # Additional source files to be included in the tarball. EXTRA_DIST = aegis.conf configure.ac # vim: set ts=8 sw=8 noet : fubar if test $? -ne 0 ; then no_result; fi diff -u ok test.out if test $? -ne 0 ; then fail; fi # ---------- rpm-spec ---------------------------------------------------- activity="aemakegen 404" aemakegen -c 10 --target=rpm-spec > test.out if test $? -ne 0 ; then fail; fi activity="check rpm-spec 408" sed "s|{TAB}|${TAB}|g" > ok << 'fubar' # # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! # # W W A RRRR N N III N N III N N GGG # W W A A R R NN N I NN N I NN N G G # W W A A RRRR N N N I N N N I N N N G # W W W AAAAA R R N NN I N NN I N NN G GG # W W W A A R R N N I N N I N N G G # W W A A R R N N III N N III N N GGG # # Warning: DO NOT send patches which fix this file. IT IS NOT the original # source file. This file is GENERATED from the Aegis repository file manifest. # If you find a bug in this file, it could well be an Aegis bug. # # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! # Summary: i18ntest Name: i18ntest Version: C010 Release: 1 License: GPL Group: Development/Tools Source: http://i18ntest.sourceforge.net/%{name}-%{version}.tar.gz URL: http://i18ntest.sourceforge.net/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildPrereq: diffutils, sharutils %description i18ntest %prep %setup -q %build %configure --sysconfdir=/etc --prefix=%{_prefix} \ {TAB}{TAB}--with-nlsdir=%{_datadir}/locale make %install rm -rf $RPM_BUILD_ROOT make DESTDIR=$RPM_BUILD_ROOT install %check true %clean rm -rf $RPM_BUILD_ROOT %files %defattr (-,root,root,-) %doc LICENSE BUILDING README %{_localedir}/ru/LC_MESSAGES/i18ntest.mo %{_bindir}/barney fubar if test $? -ne 0 ; then no_result; fi diff -u ok test.out if test $? -ne 0 ; then fail; fi # ---------- debian ------------------------------------------------------ activity="aemakegen 477" aemakegen -c 10 --target=debian if test $? -ne 0 ; then fail; fi activity="check debian/i18ntest.install 481" sed "s|{TAB}|${TAB}|g" > ok << 'fubar' usr/bin/barney usr/share/locale/ru/LC_MESSAGES/i18ntest.mo fubar if test $? -ne 0 ; then no_result; fi diff -u ok $work/${AEGIS_PROJECT}.C010/debian/i18ntest.install if test $? -ne 0 ; then fail; fi # # Only definite negatives are possible. # The functionality exercised by this test appears to work, # no other guarantees are made. # pass # vim: set ts=8 sw=4 et :