Skip to content
Snippets Groups Projects
Select Git revision
  • 20bf373ab5f99e69cd1ce25458f629dca5e483d8
  • master default
  • LTP20
  • LTP19
  • LTP18
  • LTP17
  • LTP16
  • LTP15
  • LTP14
  • LTP13
  • LTP12
  • LTP01-03
  • LTP05
  • LTP04
  • LTP06
  • LTP11
  • LTP10
  • LTP09
  • LTP08
  • LTP07
  • LTP00
  • Version-LTP20_1.0.0
  • Version-LTP19_1.1.0
  • Version-LTP18_1.1.0
  • Version-LTP17_1.2.0
  • Version-LTP16_1.2.0
  • Version-LTP19_1.0.0
  • Version-LTP18_1.0.0
  • Version-LTP17_1.1.0
  • Version-LTP16_1.1.0
  • Version-LTP16_1.0.0
  • Version-LTP15_1.0.0
  • Version-LTP14_1.0.0
  • Version-LTP13_1.0.0
  • Version-LTP12_1.1.0
  • Version-LTP01-03_1.2.1
  • Version-LTP12_1.0.0
  • Version-LTP01-03_1.2.0
  • Version-LTP04_1.2.0
  • Version-LTP05_1.1.0
  • Version-LTP06_1.1.0
41 results

Dark_UVDA_STP281_14970ms_NDIT1-1_NDIT2-1_error.fits

Blame
  • 05-data.sql 3.50 KiB
    /*
       Initialization test for storage table
    */
    
    INSERT INTO storage (storage_type, base_path, hostname) VALUES ('cold', '/ia2_tape_generic_rw_01/users', 'tape-fe.ia2.inaf.it');
    INSERT INTO storage (storage_type, base_path, hostname) VALUES ('hot', '/mnt/hot_storage/users', 'server');
    INSERT INTO storage (storage_type, base_path, hostname) VALUES ('local', '/home', 'localhost');
    INSERT INTO storage (storage_type, base_path, hostname) VALUES ('local', '/home/vospace/upload', 'localhost');
    INSERT INTO storage (storage_type, base_path, hostname) VALUES ('portal', '/files/new/lbt', 'archive.lbto.org');
    
    
    /*
       Initialization test for location table
    */
    
    INSERT INTO location (location_type, storage_src_id, storage_dest_id) VALUES ('async', 1, 3);
    INSERT INTO location (location_type, storage_src_id, storage_dest_id) VALUES ('async', 2, 3);
    INSERT INTO location (location_type, storage_src_id, storage_dest_id) VALUES ('user', 4, 4);
    INSERT INTO location (location_type, storage_src_id, storage_dest_id) VALUES ('portal', 5, 5);
    
    
    /*
       Initialization test for vospace node table; for now owner_id and group_id are set equal to the rap_id
    */
    
    
    -- parent_path = parent_relative_path
    INSERT INTO node (parent_path, parent_relative_path, name, type, owner_id, creator_id, is_public, sticky) VALUES (NULL, NULL, '', 'container', '0', '0', true, true);                                                                                -- /
    INSERT INTO node (parent_path, parent_relative_path, name, type, owner_id, creator_id, sticky) VALUES ('', NULL, 'cristiano.urban', 'container', '3354', '3354', true);                                                                        -- /curban
    INSERT INTO node (parent_path, parent_relative_path, name, type, owner_id, creator_id, sticky) VALUES ('', NULL, 'sara.bertocco', 'container', '2048', '2048', true);                                                                     -- /sbertocco
    INSERT INTO node (parent_path, parent_relative_path, name, type, owner_id, creator_id, sticky) VALUES ('', NULL, 'sonia.zorba', 'container', '2386', '2386', true);                                                                        -- /szorba
    -- parent_path <> parent_relative_path
    INSERT INTO node (parent_path, parent_relative_path, name, type, owner_id, creator_id, group_read, group_write) VALUES ('', NULL, 'test', 'container', '2386', '2386', '{"VOSpace.test1"}','{"VOSpace.test1"}');      -- /test
    INSERT INTO node (parent_path, parent_relative_path, name, type, owner_id, creator_id) VALUES ('5', '', 'f1', 'container', '2386', '2386');                                                                           -- /test/f1 (rel: /f1)
    INSERT INTO node (parent_path, parent_relative_path, name, os_name, type, owner_id, creator_id, location_id) VALUES ('5.6', '6', 'f2_renamed', 'f2', 'container', '2386', '2386', 1);                                                 -- /test/f1/f2_renamed (rel: /f1/f2)
    INSERT INTO node (parent_path, parent_relative_path, name, type, owner_id, creator_id, location_id) VALUES ('5.6.7', '6.7', 'f3', 'data', '2386', '2386', 1);                                                                         -- /test/f1/f2_renamed/f3 (rel: /f1/f2/f3)
    
    
    /*
       Initialization test for vospace users table
    */
    
    INSERT INTO Users (rap_id, user_name, e_mail) VALUES ('3354', 'cristiano.urban', 'cristiano.urban@inaf.it');
    INSERT INTO Users (rap_id, user_name, e_mail) VALUES ('2048', 'sara.bertocco', 'sara.bertocco@inaf.it');
    INSERT INTO Users (rap_id, user_name, e_mail) VALUES ('2386', 'sonia.zorba', 'sonia.zorba@inaf.it');