commit | 76257529ebfee112ff809de12ee9a3e3206a53f1 | [log] [tgz] |
---|---|---|
author | Xiang Ji <jxiang@google.com> | Sat Jun 06 01:21:03 2020 |
committer | Xiang Ji <jxiang@google.com> | Mon Jun 08 18:27:10 2020 |
tree | c3d07848f7aa8d89647ae15f59c4806ad8913033 | |
parent | e482c2e8f55004470864cedebb7f8637832daa7b [diff] |
Add py3 compatibility for several CELab python files. Things left: 1. Add py3 compatibility for the celab python test framework (such as test.py run_tests.py) 2. Convert the whole tests suites running in Windows instances py3, this part doesn't rely on vpython so we can fully convert it to py3 only. Validation: Run upload_to_cipd.py in both py2 and py3, both worked For UI test files, please see try jobs Change-Id: I31bd311cd11a2c3cb95cc293175168e72d71bcb1 Reviewed-on: https://chromium-review.googlesource.com/c/enterprise/cel/+/2233797 Reviewed-by: Yiming Zhou <uwyiming@google.com>
Chrome Enterprise Lab is an inaccurately named set of tools for building enterprise labs quickly and easily. The labs so built can be used for system level end-to-end testing of Google Chrome/Chromium.
Have a peek at the Design document.
Also have a peek at the Code of Conduct.
Most of the code is in Go. See Guide to code to get a head start on the code in this repository.
Go: Download Go from the Go download page. This project requires Go 1.9.4 or later. The build will fail with prior versions.
Depot Tools: Used for managing the checkout and the contributor workflow.
Protocol Buffers Compiler: Protocol buffers are used extensively for wranging all the data that needs to be shuttled around. Run protoc --version
to check the protoc version. The protoc version should be at least 3.5.1. If protoc is not installed, or if the version is less than 3.5.1, download it from https://github.com/protocolbuffers/protobuf/releases.
Remember that you need to copy the contents of the include
directory of the zip file into /usr/local/include/
as well, i.e.
>> cd tmp >> wget https://github.com/protocolbuffers/protobuf/releases/download/v3.9.1/protoc-3.9.1-linux-x86_64.zip >> unzip protoc-3.9.1-linux-x86_64.zip -d protoc >> sudo cp protoc/bin/protoc /usr/local/bin/protoc >> sudo mv include/* /usr/local/include/ >> rm -rf protoc3 protoc-3.9.1-linux-x86_64.zip
Dep : Used for Go depedency management. This can be installed automatically by running ./build.py deps --install
from the root of the source tree.
Go support for Protocol Buffers : This can be installed automatically by running ./build.py deps --install
from the root of the source tree.
absl-py: This Python package is used by tests. Install it by running pip install absl-py
.
There are two ways to get the source. One is to use managed deps, and the other is to use plain go get
. The latter workflow doesn't quite work yet due to this repository not being integrated with go.chromium.org
. So this page only mentions the managed dependency workflow.
Clone this repository:
Assumes that $GOPATH
is a single path and not a :
delimited list.
mkdir -p ${GOPATH}/src/chromium.googlesource.com/enterprise cd ${GOPATH}/src/chromium.googlesource.com/enterprise git clone https://chromium.googlesource.com/enterprise/cel cd cel
Get the dependencies:
python build.py deps --install
If you see an error message complaining about protoc missing, see the protoc prerequisites above.
Use the build script:
python build.py build
If you see an error message like google/protobuf/descriptor.proto: File not found
, see the protoc prerequisites (specifically the includes step).
Also make sure that all unit tests for the Go source files are passing.
python build.py test
See CONTRIBUTING.
The framework is uploaded into CIPD as a package.
Here are the general steps to release the package.