Updated Branches: refs/heads/master 37aeff83f -> 6ffafde33
Missing LICENSE headers for sandbox and __init__.py's Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/6ffafde3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/6ffafde3 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/6ffafde3 Branch: refs/heads/master Commit: 6ffafde33ab385ef10ec7e85bd9f16a6d0a25ef9 Parents: 60cd653 Author: Prasanna Santhanam <[email protected]> Authored: Sat Aug 4 17:29:47 2012 +0530 Committer: Prasanna Santhanam <[email protected]> Committed: Sat Aug 4 17:29:47 2012 +0530 ---------------------------------------------------------------------- tools/marvin/CHANGES.txt | 17 ++++++++++++ tools/marvin/MANIFEST.in | 20 ++++++++++++++- tools/marvin/docs/tutorial.txt | 19 ++++++++++++++ tools/marvin/marvin/__init__.py | 19 +++++++++++++- tools/marvin/marvin/sandbox/__init__.py | 18 +++++++++++++ tools/marvin/marvin/sandbox/advanced/__init__.py | 18 +++++++++++++ .../marvin/sandbox/advanced/setup.properties | 18 +++++++++++++ .../sandbox/advanced/tests/test_scenarios.py | 19 ++++++++++++++ tools/marvin/marvin/sandbox/basic/__init__.py | 18 +++++++++++++ tools/marvin/marvin/sandbox/basic/setup.properties | 18 +++++++++++++ .../marvin/sandbox/demo/simulator/__init__.py | 18 +++++++++++++ .../marvin/sandbox/demo/simulator/simulator.cfg | 19 ++++++++++++++ .../demo/simulator/simulatordemo.properties | 18 +++++++++++++ .../sandbox/demo/simulator/testcase/__init__.py | 18 +++++++++++++ .../demo/simulator/testcase/libs/__init__.py | 18 +++++++++++++ 15 files changed, 273 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/6ffafde3/tools/marvin/CHANGES.txt ---------------------------------------------------------------------- diff --git a/tools/marvin/CHANGES.txt b/tools/marvin/CHANGES.txt index dc207fb..262c884 100644 --- a/tools/marvin/CHANGES.txt +++ b/tools/marvin/CHANGES.txt @@ -1 +1,18 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + v0.1.0 Tuesday, April 10 2012 -- Packaging Marvin http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/6ffafde3/tools/marvin/MANIFEST.in ---------------------------------------------------------------------- diff --git a/tools/marvin/MANIFEST.in b/tools/marvin/MANIFEST.in index 9203697..3d37381 100644 --- a/tools/marvin/MANIFEST.in +++ b/tools/marvin/MANIFEST.in @@ -1,2 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + + include *.txt -recursive-include docs *.txt \ No newline at end of file +recursive-include docs *.txt http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/6ffafde3/tools/marvin/docs/tutorial.txt ---------------------------------------------------------------------- diff --git a/tools/marvin/docs/tutorial.txt b/tools/marvin/docs/tutorial.txt index 4da4b1b..a387e1b 100644 --- a/tools/marvin/docs/tutorial.txt +++ b/tools/marvin/docs/tutorial.txt @@ -1 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + + + Can be found at : http://wiki.cloudstack.org/display/QA/Testing+with+python http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/6ffafde3/tools/marvin/marvin/__init__.py ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/__init__.py b/tools/marvin/marvin/__init__.py index a3ded0a..f6494e7 100644 --- a/tools/marvin/marvin/__init__.py +++ b/tools/marvin/marvin/__init__.py @@ -1 +1,18 @@ -#Marvin - The cloudstack test client \ No newline at end of file +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +#Marvin - The cloudstack test client http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/6ffafde3/tools/marvin/marvin/sandbox/__init__.py ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/sandbox/__init__.py b/tools/marvin/marvin/sandbox/__init__.py index e69de29..57823fc 100644 --- a/tools/marvin/marvin/sandbox/__init__.py +++ b/tools/marvin/marvin/sandbox/__init__.py @@ -0,0 +1,18 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + + http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/6ffafde3/tools/marvin/marvin/sandbox/advanced/__init__.py ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/sandbox/advanced/__init__.py b/tools/marvin/marvin/sandbox/advanced/__init__.py index e69de29..57823fc 100644 --- a/tools/marvin/marvin/sandbox/advanced/__init__.py +++ b/tools/marvin/marvin/sandbox/advanced/__init__.py @@ -0,0 +1,18 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + + http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/6ffafde3/tools/marvin/marvin/sandbox/advanced/setup.properties ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/sandbox/advanced/setup.properties b/tools/marvin/marvin/sandbox/advanced/setup.properties index 9c025f5..966d1f9 100644 --- a/tools/marvin/marvin/sandbox/advanced/setup.properties +++ b/tools/marvin/marvin/sandbox/advanced/setup.properties @@ -1,3 +1,21 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + + [globals] #global settings in cloudstack expunge.delay=60 http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/6ffafde3/tools/marvin/marvin/sandbox/advanced/tests/test_scenarios.py ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/sandbox/advanced/tests/test_scenarios.py b/tools/marvin/marvin/sandbox/advanced/tests/test_scenarios.py index bae181c..7f552c3 100644 --- a/tools/marvin/marvin/sandbox/advanced/tests/test_scenarios.py +++ b/tools/marvin/marvin/sandbox/advanced/tests/test_scenarios.py @@ -1,3 +1,22 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + + + #!/usr/bin/env python try: import unittest2 as unittest http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/6ffafde3/tools/marvin/marvin/sandbox/basic/__init__.py ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/sandbox/basic/__init__.py b/tools/marvin/marvin/sandbox/basic/__init__.py index e69de29..57823fc 100644 --- a/tools/marvin/marvin/sandbox/basic/__init__.py +++ b/tools/marvin/marvin/sandbox/basic/__init__.py @@ -0,0 +1,18 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + + http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/6ffafde3/tools/marvin/marvin/sandbox/basic/setup.properties ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/sandbox/basic/setup.properties b/tools/marvin/marvin/sandbox/basic/setup.properties index 2cde465..e9c0f4d 100644 --- a/tools/marvin/marvin/sandbox/basic/setup.properties +++ b/tools/marvin/marvin/sandbox/basic/setup.properties @@ -1,3 +1,21 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + + [globals] #global settings in cloudstack expunge.delay=60 http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/6ffafde3/tools/marvin/marvin/sandbox/demo/simulator/__init__.py ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/sandbox/demo/simulator/__init__.py b/tools/marvin/marvin/sandbox/demo/simulator/__init__.py index e69de29..57823fc 100644 --- a/tools/marvin/marvin/sandbox/demo/simulator/__init__.py +++ b/tools/marvin/marvin/sandbox/demo/simulator/__init__.py @@ -0,0 +1,18 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + + http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/6ffafde3/tools/marvin/marvin/sandbox/demo/simulator/simulator.cfg ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/sandbox/demo/simulator/simulator.cfg b/tools/marvin/marvin/sandbox/demo/simulator/simulator.cfg index 7816e19..9cb904c 100644 --- a/tools/marvin/marvin/sandbox/demo/simulator/simulator.cfg +++ b/tools/marvin/marvin/sandbox/demo/simulator/simulator.cfg @@ -1,3 +1,22 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + + + { "zones": [ { http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/6ffafde3/tools/marvin/marvin/sandbox/demo/simulator/simulatordemo.properties ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/sandbox/demo/simulator/simulatordemo.properties b/tools/marvin/marvin/sandbox/demo/simulator/simulatordemo.properties index ef01fb8..5a476b4 100644 --- a/tools/marvin/marvin/sandbox/demo/simulator/simulatordemo.properties +++ b/tools/marvin/marvin/sandbox/demo/simulator/simulatordemo.properties @@ -1,3 +1,21 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + + [globals] expunge.delay=60 expunge.interval=60 http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/6ffafde3/tools/marvin/marvin/sandbox/demo/simulator/testcase/__init__.py ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/sandbox/demo/simulator/testcase/__init__.py b/tools/marvin/marvin/sandbox/demo/simulator/testcase/__init__.py index e69de29..57823fc 100644 --- a/tools/marvin/marvin/sandbox/demo/simulator/testcase/__init__.py +++ b/tools/marvin/marvin/sandbox/demo/simulator/testcase/__init__.py @@ -0,0 +1,18 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + + http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/6ffafde3/tools/marvin/marvin/sandbox/demo/simulator/testcase/libs/__init__.py ---------------------------------------------------------------------- diff --git a/tools/marvin/marvin/sandbox/demo/simulator/testcase/libs/__init__.py b/tools/marvin/marvin/sandbox/demo/simulator/testcase/libs/__init__.py index e69de29..57823fc 100644 --- a/tools/marvin/marvin/sandbox/demo/simulator/testcase/libs/__init__.py +++ b/tools/marvin/marvin/sandbox/demo/simulator/testcase/libs/__init__.py @@ -0,0 +1,18 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +
