Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/apps/system/test/unit/_proxy.html
blob: 21024510768f3e866acf6206a9d139d13c3a652c (plain)
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
<!DOCTYPE HTML>
<html>
<head>
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  <title>Serve the tests</title>

  <script type="text/javascript" charset="utf-8">
  (function(window){
    var Loader = window.CommonResourceLoader = {},
        host = document.location.host,
        domain = host.replace(/(^[\w\d-]+\.)?([\w\d]+\.[a-z]+)/, 'test-agent.$2');

    Loader.domain = document.location.protocol + '//' + domain;
    Loader.url = function(url){
      return this.domain + url;
    }

    Loader.script = function(url, doc){
      doc = doc || document;
      doc.write('<script type="application/javascript;version=1.8" src="' + this.url(url) + '"><\/script>');
      return this;
    };
  }(this));
  </script>

  <style type="text/css" media="all">
    html,body,iframe {
      height: 100%;
      width: 100%;
    }
  </style>

</head>
<body>

<!-- Test Agent UI will be loaded in here -->
<div id="test-agent-ui">
</div>

<script type="text/javascript" charset="utf-8">
CommonResourceLoader.
  script('/common/test/test_url_resolver.js').
  script('/common/vendor/test-agent/test-agent.js').
  script('/common/test/agent_proxy.js');
</script>
</body>
</html>