~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to exercises/sample/all_input.xml

[Uber-commit of holiday work because I lacked a local copy of the branch.]

 ivle.makeuser: Don't use jailconf.py as a header for the in-jail conf.py;
     generate the whole thing using string formatting operators and include
     the template inline.

 ivle.makeuser.make_conf_py: XXX the inclusion of ivle.conf.jail_base in
     the jail. It is simply there to placate ivle.studpath, and needs
     to go before we can entirely remove the in-jail config.

 ivle-buildjail:
   - Add. Converted from setup.buildjail.
   - Build the jail in __base_build__ and rsync it to __base__ when
     done, rather than operating only in ./jail
   - Rename --rebuildjail/-j to --recreate/-r, as the whole script
     is now for jail rebuilding. Also add a warning to the usage string about
     the large volume likely to be downloaded.
   - Check existence before removing trees.
   - Don't copy jailconf.py over conf.py in the jail. Also make
     sure that we remove conf.pyc.

 setup.configure:
   - Stop generating jailconf.py at all.
   - Add a jail_system_build setting, defaulting to __base_build__ next to
     the existing __base__.
   - Don't use an OptionParser before calling the real function, as that
     adds options dynamically.

 setup.install:
   - Add an option (-R) to avoid writing out svn revision info to
     $PREFIX/share/ivle/revision.txt.
   - Remove jail-copying things.
   - Install all services to the host, rather than just usrmgt-server. We do
     this so we can build the jail from the host without the source tree.
   - Shuffle some things, and don't install phpBB3 twice.
   - Add a --root argument, to take an alternate root directory to install
     into (as given to autotools in $DESTDIR).

 setup.build:
   - Allow running as non-root.
   - Take a --no-compile option to not byte-compile Python files.

 setup.util:
   - Include usrmgt-server in the list of services.
   - Add make_install_path(), a wrapper around os.path.join() that ensures
     the second path is relative.
   - Install ivle-buildjail with the other binaries.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<exercise name = "Test all IO">
 
2
    <desc>Write a program which does the following:
 
3
      <ol>
 
4
        <li>Gets the value of a variable "foo" and prints it to stdout.</li>
 
5
        <li>Gets the contents of a file "input.txt" and prints it to stdout.
 
6
        </li>
 
7
        <li>Gets the contents of stdin and writes it to a file "output.txt".
 
8
        </li>
 
9
      </ol>
 
10
    </desc>
 
11
    <include>
 
12
        <!-- Here you can place any Python functions to use for normalisation.
 
13
             Note: "id" will be in our standard test functions lib.
 
14
          -->
 
15
<![CDATA[
 
16
def id(x):
 
17
    return x
 
18
]]>
 
19
    </include>
 
20
    <solution>
 
21
<![CDATA[
 
22
# Sample solution, used to generate test output
 
23
input1 = raw_input()
 
24
input2 = file('input.txt').read()
 
25
input3 = foo
 
26
 
 
27
print input3
 
28
 
 
29
print input2
 
30
 
 
31
f = file('output.txt','w')
 
32
f.write(input1)
 
33
f.close()
 
34
]]>
 
35
    </solution>
 
36
    <!-- Alternatively, <solution src="all_input_test_soln.py" /> -->
 
37
    <case name="All Tests">
 
38
        <!-- Specify input -->
 
39
        <stdin>This is Standard Input</stdin>
 
40
        <file name='input.txt'>
 
41
            File Input
 
42
        </file>
 
43
        <var name="foo" value="'Variable Input'" />
 
44
 
 
45
        <!-- Functions test varying levels of compliance with the spec -->
 
46
        <!-- 'default="match"' means exactly match any unlisted files.
 
47
              (The default behaviour)
 
48
             'default="ignore"' means ignore any unlisted files.
 
49
          -->
 
50
        <!-- Match stdout case insensitive, output.txt match exactly,
 
51
             and ignore other files. -->
 
52
        <function desc="Match case insensitive and ignore other files"
 
53
            default="ignore">
 
54
            <stdout>str.lower</stdout>
 
55
            <!-- 'type="norm"' treats the function as a normalisation
 
56
                 function (the default behaviour).
 
57
                 'type="check"' treats it as a 2-argument check. -->
 
58
            <file name="output.txt" type="norm">str.lower</file>
 
59
        </function>
 
60
        <function desc="Match expected files" default="ignore">
 
61
                <stdout/>
 
62
                <file name="output.txt"/>
 
63
        </function>
 
64
        <!-- Match all files exactly, even those not listed. -->
 
65
        <function desc="Match output, no unexpected files allowed" />
 
66
    </case>
 
67
</exercise>
 
68