File: AgentAddData.php

package info (click to toggle)
fossology 1.1.0-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 10,984 kB
  • ctags: 7,160
  • sloc: ansic: 32,477; php: 22,920; sh: 1,572; perl: 1,352; makefile: 1,110; xml: 201; sql: 21
file content (94 lines) | stat: -rw-r--r-- 3,734 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?php
/***********************************************************
 Copyright (C) 2008 Hewlett-Packard Development Company, L.P.

 This program is free software; you can redistribute it and/or
 modify it under the terms of the GNU General Public License
 version 2 as published by the Free Software Foundation.

 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, write to the Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 ***********************************************************/
/**
 * Upload Test data for use in agent add and email notification tests
 *
 * Uses the simpletest framework, this way it doesn't matter where the
 * repo is, it will get uploaded, and this is another set of tests.
 *
 * @param URL obtained from the test enviroment globals
 *
 * @version "$Id: AgentAddData.php 2017 2009-04-25 03:02:01Z rrando $"
 *
 * Created on March 18, 2009
 */
/* Upload the following files from the fosstester home directory:
 * - simpletest_1.0.1.tar.gz
 * - gplv2.1
 * - Affero-v1.0
 * - http://www.gnu.org/licenses/gpl-3.0.txt
 * - http://www.gnu.org/licenses/agpl-3.0.txt
 */
require_once ('fossologyTestCase.php');
require_once ('TestEnvironment.php');
global $URL;
global $PROXY;
class uploadAgentDataTest extends fossologyTestCase {
  public $mybrowser;
  public $webProxy;

  function setUp() {
    global $URL;
    $this->Login();
  }
  /**
   * create the Testing folder used by other tests
   */
  function testCreateTestingFolder() {
    global $URL;
    print "Creating Agent-Test folder\n";
    $page = $this->mybrowser->get($URL);
    $this->createFolder(NULL, 'Agent-Test', NULL);
  }
  function testuploadAgentDataTest() {
    global $URL;
    global $PROXY;
    print "starting uploadAgentDataTest\n";
    $LicenseList = array('TestData/licenses/RCSL_v3.0_a.txt',
                            'TestData/licenses/BSD_style_a.txt',
                            'TestData/licenses/BSD_style_b.txt',
                            'TestData/licenses/BSD_style_c.txt',);
    $urlList = array('http://downloads.sourceforge.net/simpletest/simpletest_1.0.1.tar.gz',
                         'http://www.gnu.org/licenses/gpl-3.0.txt',
                         'http://www.gnu.org/licenses/agpl-3.0.txt',
                         'http://snape.west/~fosstester/fossDirsOnly.tar.bz2');
    /* upload the archives using the upload from file menu */
    //$desciption = "File $upload uploaded by Upload Data Test";
    print "Starting file uploads\n";
    // we do them serially for now due to different parameters needed
    $this->uploadFile('Agent-Test', $LicenseList[0],
         "File $LicenseList[0] uploaded by Upload Data Test", NULL, NULL);
    $this->uploadFile('Agent-Test', $LicenseList[1],
         "File $LicenseList[1] uploaded by Upload Data Test", NULL, 1);
    $this->uploadFile('Agent-Test', $LicenseList[2],
         "File $LicenseList[2] uploaded by Upload Data Test", NULL, '1,2');
    $this->uploadFile('Agent-Test', $LicenseList[3],
         "File $LicenseList[3] uploaded by Upload Data Test", NULL, 3);

    /* Upload the urls using upload from url.  Check if the user specificed a
     * web proxy for the environment.  If so, set the attribute. */
    if (!(empty($PROXY))) {
      $this->webProxy = $PROXY;
    }
    print "Starting Url uploads\n";
    foreach($urlList as $url) {
      $this->uploadUrl('Agent-Test', $url, NULL, NULL, NULL);
    }
  }
}
?>