2018-05-14 17:36:12 +02:00
Test 9-30 Project enable content trust
=======
# Purpose:
To verify project level content trust works correctly.
# References:
User guide
# Environment:
2021-02-18 03:54:32 +01:00
* This test requires one Harbor instance is running and available.
2018-05-14 17:36:12 +02:00
* A Linux host with Docker CLI installed (Docker client).
# Test Steps:
**NOTE:**
In below test, < harbor_ip > should be replaced by your harbor's ip or FQDN. If you are using a self-signed certificate,make sure to copy the CA root cert into ```/etc/docker/certs.d/< harbor_ip > ``` and ```$HOME/.docker/tls/< harbor_ip > :4443/```
2021-02-18 03:54:32 +01:00
project a should be replaced by meaningful and longer name.
2018-05-14 17:36:12 +02:00
1. Login UI and create a project a.
2. Push an image to project a.
2021-02-18 03:54:32 +01:00
3. On Docker client, run
2018-05-14 17:36:12 +02:00
```sh
export DOCKER_CONTENT_TRUST=1
2021-02-18 03:54:32 +01:00
export DOCKER_CONTENT_TRUST_SERVER=https://< harbor_ip > :4443
2018-05-14 17:36:12 +02:00
```
and login Harbor.
4. Push an image to project a.
5. In project a configuration page, enabled project level content trust.
6. Pull the image the first time pushed.
7. Pull the image the second time pushed.
# Expected Outcome:
* In step6, the image can not be pulled.
* In step7, the image can be pulled.
# Possible Problems:
None