#!/bin/sh # # aegis - project change supervisor. # Copyright (C) 2012 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, vs fmtgen" # load up standard prelude and test functions . test_funcs AEGIS_PROJECT=projname 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/configure.ac \ $work/${AEGIS_PROJECT}.C010/aegis/main.cc \ $work/${AEGIS_PROJECT}.C010/aegis/example.def \ -v > log 2>&1 if test $? -ne 0 ; then cat log; 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 aegis -nt -v > log 2>&1 if test $? -ne 0 ; then cat log; no_result; fi TAB=`awk 'BEGIN{printf("%c", 9)}' /dev/null` # ---------- makefile ---------------------------------------------------- activity="aemakegen 118" aemakegen -c 10 --target=makefile --flavour=aegis > test.out if test $? -ne 0 ; then fail; fi activity="check makefile 122" 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_DIR = @INSTALL@ -m 0755 -d # # The name of the C++ compiler to use. # CXX = @CXX@ # # The C++ compiler flags to use. # CXXFLAGS = @CXXFLAGS@ # # 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@ # # 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 aegis/example.fmtgen.cc aegis/example.fmtgen.h: aegis/example.def bin/fmtgen {TAB}bin/fmtgen -I. aegis/example.def aegis/example.fmtgen.cc \ {TAB}{TAB}aegis/example.fmtgen.h aegis/example.fmtgen.o: aegis/example.fmtgen.cc {TAB}$(CXX) $(CPPFLAGS) $(CXXFLAGS) -I. -c aegis/example.fmtgen.cc {TAB}mv example.fmtgen.o $@ aegis/main.o: aegis/main.cc {TAB}$(CXX) $(CPPFLAGS) $(CXXFLAGS) -I. -c aegis/main.cc {TAB}mv main.o $@ t0001a: all test/00/t0001a.sh {TAB}PATH=`pwd`/bin:$$PATH $(SH) test/00/t0001a.sh .mkdir.__bindir_: {TAB}-$(INSTALL_DIR) $(bindir) {TAB}@-test -d $(bindir) && touch $@ {TAB}@sleep 1 # # The aegis program. # aegis_obj = aegis/example.fmtgen.o aegis/main.o bin/aegis: $(aegis_obj) .bin {TAB}$(CXX) $(CPPFLAGS) $(CXXFLAGS) -o $@ $(aegis_obj) $(LDFLAGS) $(LIBS) $(bindir)/aegis: .mkdir.__bindir_ bin/aegis {TAB}$(INSTALL_PROGRAM) bin/aegis $@ all: all-bin all-bin: bin/aegis .bin: {TAB}-mkdir bin {TAB}-chmod 0755 bin {TAB}@-test -d bin && touch $@ {TAB}@sleep 1 check: sure test_files = t0001a sure: $(test_files) {TAB}@echo Passed All Tests clean: clean-bin clean-misc clean-obj clean-bin: {TAB}rm -f bin/aegis clean-misc: {TAB}rm -f .bin .mkdir.__bindir_ core clean-obj: {TAB}rm -f aegis/example.fmtgen.cc aegis/example.fmtgen.h {TAB}rm -f aegis/example.fmtgen.o aegis/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-bin: $(bindir)/aegis uninstall: {TAB}rm -f $(bindir)/aegis .PHONY: all all-bin check clean clean-bin distclean distclean-directories \ {TAB}{TAB}distclean-files install install-bin sure t0001a \ {TAB}{TAB}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 380" aemakegen -c 10 --target=automake --flavour=aegis > test.out if test $? -ne 0 ; then fail; fi activity="check automake 384" 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 aegis/example.fmtgen.cc aegis/example.fmtgen.h: aegis/example.def bin/fmtgen {TAB}bin/fmtgen -I. aegis/example.def aegis/example.fmtgen.cc \ {TAB}{TAB}aegis/example.fmtgen.h # executables to be installed bin_PROGRAMS = bin/aegis # The aegis program. bin_aegis_SOURCES = aegis/example.def aegis/example.fmtgen.cc aegis/main.cc # How to run the test scripts. TESTS_ENVIRONMENT = PATH=`pwd`/bin:$$PATH $(SHELL) # The test scripts to be run. TESTS = test/00/t0001a.sh # Additional source files to be included in the tarball. EXTRA_DIST = aegis.conf aegis/example.fmtgen.h configure.ac # Catch-22 when building dependencies. BUILT_SOURCES = aegis/example.fmtgen.cc aegis/example.fmtgen.h # 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 435" aemakegen -c 10 --target=rpm-spec --flavour=aegis > test.out if test $? -ne 0 ; then fail; fi activity="check rpm-spec 439" 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: projname Name: projname Version: C010 Release: 1 License: GPL Group: Development/Tools Source: http://projname.sourceforge.net/%{name}-%{version}.tar.gz URL: http://projname.sourceforge.net/ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildPrereq: diffutils, sharutils %description projname %prep %setup -q %build %configure --sysconfdir=/etc --prefix=%{_prefix} make %install rm -rf $RPM_BUILD_ROOT make DESTDIR=$RPM_BUILD_ROOT install %check make sure %clean rm -rf $RPM_BUILD_ROOT %files %defattr (-,root,root,-) %doc LICENSE BUILDING README %{_bindir}/aegis fubar if test $? -ne 0 ; then no_result; fi diff -u ok test.out if test $? -ne 0 ; then fail; fi # ---------- debian ------------------------------------------------------ activity="aemakegen 509" aemakegen -c 10 --target=debian --flavour=aegis if test $? -ne 0 ; then fail; fi activity="check debian/projname.install 513" sed "s|{TAB}|${TAB}|g" > ok << 'fubar' usr/bin/aegis fubar if test $? -ne 0 ; then no_result; fi diff -u ok $work/${AEGIS_PROJECT}.C010/debian/projname.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 :