root / conf / junit_seed_data.xml

Revision 673:a03c8cf46582, 3.7 kB (checked in by Harri Kaimio <harri@…>, 4 years ago)

Use PhotoFolder?'s uuid as the primary key in database instead of the
folder_id surrogate key that was used previously.

Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3  Copyright (c) 2006 Harri Kaimio
4 
5  This file is part of Photovault.
6
7  Photovault is free software; you can redistribute it and/or modify it
8  under the terms of the GNU General Public License as published by
9  the Free Software Foundation; either version 2 of the License, or
10  (at your option) any later version.
11
12  Photovault is distributed in the hope that it will be useful, but
13  WITHOUT ANY WARRANTY; without even the implied warranty of
14  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  General Public License for more details.
16
17  You should have received a copy of the GNU General Public License
18  along with Foobar; if not, write to the Free Software Foundation,
19  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
20-->
21
22<!--
23    Initial data that is loaded to database for JUnit test cases.
24   
25    Contents of this file is loaded using Apache DDLUtils.
26-->
27
28
29<data>
30    <!--
31    Test_PhotoFolder#testPhotoretrieval
32    -->
33    <photo_collections collection_uuid="c09bb1bf-58b3-4216-9294-569c50721360" 
34        parent_uuid="939db304-2dec-4a59-ae24-8e1a6b165105" 
35        collection_name="testPhotoRetrieval" 
36        collection_desc="Folder for testPhotoRetrieval"/>
37    <photos photo_uuid="f5d73748-0fb4-40ab-bd05-d3740fb30783"
38    time_accuracy="0"
39    f_stop="1.2"
40    focal_length="20"
41    shutter_speed="1"
42    film_speed="200"
43    pref_rotation="0"
44    photo_quality="1"
45    description="testPhotoRetrieval1"
46    />
47    <photos photo_uuid="f5d73748-0fb4-40ab-bd05-d3740fb30745"
48        time_accuracy="0"
49        f_stop="2.8"
50        focal_length="20"
51        shutter_speed="1"
52        film_speed="200"
53        pref_rotation="0"
54        photo_quality="1"
55        description="testPhotoRetrieval2"
56    />
57   
58    <version_histories uuid="f5d73748-0fb4-40ab-bd05-d3740fb30783"
59        class_discriminator="photo"
60    />   
61    <version_histories uuid="f5d73748-0fb4-40ab-bd05-d3740fb30745"
62        class_discriminator="photo"
63    />
64   
65    <collection_photos 
66        collection_uuid="c09bb1bf-58b3-4216-9294-569c50721360" 
67        photo_uuid="f5d73748-0fb4-40ab-bd05-d3740fb30783"/>
68    <collection_photos 
69        collection_uuid="c09bb1bf-58b3-4216-9294-569c50721360" 
70        photo_uuid="f5d73748-0fb4-40ab-bd05-d3740fb30745"/>
71   
72    <!-- Test_PhotoFolder#testSubfolders -->
73    <photo_collections 
74        collection_uuid="e356990e-a100-41d4-9b18-2b1410051801" 
75        parent_uuid="939db304-2dec-4a59-ae24-8e1a6b165105" 
76        collection_name="subfolderTest" 
77        collection_desc="Folder for testSubfolders"/>
78    <photo_collections 
79        collection_uuid="a275b958-aeb9-4075-b6db-69db8a7101c2" 
80        parent_uuid="e356990e-a100-41d4-9b18-2b1410051801" 
81        collection_name="Subfolder1" 
82        collection_desc="Folder for testSubfolders"/>
83    <photo_collections 
84        collection_uuid="5fdcab2b-082c-4900-8da7-febaa275ec54" 
85        parent_uuid="e356990e-a100-41d4-9b18-2b1410051801" 
86        collection_name="Subfolder2" 
87        collection_desc="Folder for testSubfolders"/>
88    <photo_collections 
89        collection_uuid="ab893ace-765d-4c26-9e43-eaa9a4f95fda" 
90        parent_uuid="e356990e-a100-41d4-9b18-2b1410051801" 
91        collection_name="Subfolder3" 
92        collection_desc="Folder for testSubfolders"/>
93    <photo_collections 
94        collection_uuid="f73d5b23-e399-42be-b5c6-e8dfac08e706" 
95        parent_uuid="e356990e-a100-41d4-9b18-2b1410051801" 
96        collection_name="Subfolder4" 
97        collection_desc="Folder for testSubfolders"/>
98    <icc_profiles profile_id="1" profile_name="Test 1"
99        profile_desc="Seed profile"/>
100    <icc_instances profile_id="1" volume_id="photos" fname="nonexistent.icc"/>
101   
102   
103</data>
Note: See TracBrowser for help on using the browser.