2023-11-22 09:13:04 +01:00
import json
2023-12-08 07:10:19 +01:00
import random
2023-11-22 09:13:04 +01:00
import requests
import urllib3
import os
2023-12-08 07:10:19 +01:00
admin_user_name = os . environ . get ( " ADMIN_USER_NAME " )
2023-11-22 09:13:04 +01:00
admin_password = os . environ . get ( " ADMIN_PASSWORD " )
user_name = os . environ . get ( " USER_NAME " )
password = os . environ . get ( " PASSWORD " )
harbor_base_url = os . environ . get ( " HARBOR_BASE_URL " )
2023-12-08 07:10:19 +01:00
resources = os . environ . get ( " RESOURCES " )
2023-11-22 09:13:04 +01:00
project_id = os . environ . get ( " PROJECT_ID " )
project_name = os . environ . get ( " PROJECT_NAME " )
# the source artifact should belong to the provided project, e.g. "nginx"
source_artifact_name = os . environ . get ( " SOURCE_ARTIFACT_NAME " )
# the source artifact tag should belong to the provided project, e.g. "latest"
source_artifact_tag = os . environ . get ( " SOURCE_ARTIFACT_TAG " )
2023-12-08 07:10:19 +01:00
ID_PLACEHOLDER = " (id) "
2023-11-22 09:13:04 +01:00
urllib3 . disable_warnings ( urllib3 . exceptions . InsecureRequestWarning )
class Permission :
2023-12-08 07:10:19 +01:00
def __init__ ( self , url , method , expect_status_code , payload = None , res_id_field = None , payload_id_field = None , id_from_header = False ) :
2023-11-22 09:13:04 +01:00
self . url = url
self . method = method
self . expect_status_code = expect_status_code
self . payload = payload
self . res_id_field = res_id_field
self . payload_id_field = payload_id_field if payload_id_field else res_id_field
2023-12-08 07:10:19 +01:00
self . id_from_header = id_from_header
2023-11-22 09:13:04 +01:00
def call ( self ) :
2023-12-08 07:10:19 +01:00
if ID_PLACEHOLDER in self . url :
self . url = self . url . replace ( ID_PLACEHOLDER , str ( self . payload . get ( self . payload_id_field ) ) )
response = requests . request ( self . method , self . url , data = json . dumps ( self . payload ) , verify = False , auth = ( user_name , password ) , headers = { " Content-Type " : " application/json " } )
assert response . status_code == self . expect_status_code , " Failed to call the {} {} , expected status code is {} , but got {} , error msg is {} " . format ( self . method , self . url , self . expect_status_code , response . status_code , response . text )
if self . res_id_field and self . payload_id_field and self . id_from_header == False :
self . payload [ self . payload_id_field ] = int ( json . loads ( response . text ) [ self . res_id_field ] )
elif self . res_id_field and self . payload_id_field and self . id_from_header == True :
self . payload [ self . payload_id_field ] = int ( response . headers [ " Location " ] . split ( " / " ) [ - 1 ] )
return response
2023-11-22 09:13:04 +01:00
# Project permissions:
# 1. Resource: label, actions: ['read', 'create', 'update', 'delete', 'list']
label_payload = {
" color " : " #FFFFFF " ,
" description " : " Just for testing " ,
2023-12-08 07:10:19 +01:00
" name " : " label-name- {} " . format ( int ( random . randint ( 1000 , 9999 ) ) ) ,
2023-11-22 09:13:04 +01:00
" project_id " : int ( project_id ) ,
2023-12-08 07:10:19 +01:00
" scope " : " p "
2023-11-22 09:13:04 +01:00
}
2023-12-08 07:10:19 +01:00
create_label = Permission ( " {} /labels " . format ( harbor_base_url ) , " POST " , 201 , label_payload , " id " , id_from_header = True )
list_label = Permission ( " {} /labels?scope=p&project_id= {} " . format ( harbor_base_url , project_id ) , " GET " , 200 )
read_label = Permission ( " {} /labels/ {} " . format ( harbor_base_url , ID_PLACEHOLDER ) , " GET " , 200 , label_payload , payload_id_field = " id " )
update_label = Permission ( " {} /labels/ {} " . format ( harbor_base_url , ID_PLACEHOLDER ) , " PUT " , 200 , label_payload , payload_id_field = " id " )
delete_label = Permission ( " {} /labels/ {} " . format ( harbor_base_url , ID_PLACEHOLDER ) , " DELETE " , 200 , label_payload , payload_id_field = " id " )
2023-11-22 09:13:04 +01:00
# 2. Resource: project, actions: ['read', 'update', 'delete']
2023-12-08 07:10:19 +01:00
project_payload = { " project_name " : " test " , " metadata " : { " public " : " false " } , " storage_limit " : - 1 }
read_project = Permission ( " {} /projects/ {} " . format ( harbor_base_url , project_id ) , " GET " , 200 )
update_project = Permission ( " {} /projects/ {} " . format ( harbor_base_url , project_id ) , " PUT " , 200 , project_payload )
delete_project = Permission ( " {} /projects/ {} " . format ( harbor_base_url , project_id ) , " DELETE " , 412 )
deletable_project = Permission ( " {} /projects/ {} /_deletable " . format ( harbor_base_url , project_id ) , " GET " , 200 )
2023-11-22 09:13:04 +01:00
# 3. Resource: metadata actions: ['read', 'list', 'create', 'update', 'delete'],
2023-12-08 07:10:19 +01:00
metadata_payload = { " auto_scan " : " true " }
create_metadata = Permission ( " {} /projects/ {} /metadatas " . format ( harbor_base_url , project_id ) , " POST " , 200 , metadata_payload )
list_metadata = Permission ( " {} /projects/ {} /metadatas " . format ( harbor_base_url , project_id ) , " GET " , 200 , metadata_payload )
read_metadata = Permission ( " {} /projects/ {} /metadatas/auto_scan " . format ( harbor_base_url , project_id ) , " GET " , 200 , metadata_payload )
metadata_payload_for_update = { " auto_scan " : " false " }
update_metadata = Permission ( " {} /projects/ {} /metadatas/auto_scan " . format ( harbor_base_url , project_id ) , " PUT " , 200 , metadata_payload_for_update )
delete_metadata = Permission ( " {} /projects/ {} /metadatas/auto_scan " . format ( harbor_base_url , project_id ) , " DELETE " , 200 , metadata_payload )
2023-11-22 09:13:04 +01:00
# 4. Resource: repository actions: ['read', 'list', 'update', 'delete', 'pull', 'push']
# note: pull and push are for docker cli, no API needs them
list_repo = Permission ( " {} /projects/ {} /repositories " . format ( harbor_base_url , project_name ) , " GET " , 200 )
read_repo = Permission ( " {} /projects/ {} /repositories/does_not_exist " . format ( harbor_base_url , project_name ) , " GET " , 404 )
2023-12-08 07:10:19 +01:00
update_repo = Permission ( " {} /projects/ {} /repositories/does_not_exist " . format ( harbor_base_url , project_name ) , " PUT " , 404 , { } )
delete_repo = Permission ( " {} /projects/ {} /repositories/does_not_exist " . format ( harbor_base_url , project_name ) , " DELETE " , 404 )
2023-11-22 09:13:04 +01:00
# 5. Resource artifact actions: ['read', 'list', 'create', 'delete'],
2023-12-08 07:10:19 +01:00
list_artifact = Permission ( " {} /projects/ {} /repositories/ {} /artifacts " . format ( harbor_base_url , project_name , source_artifact_name ) , " GET " , 200 )
read_artifact = Permission ( " {} /projects/ {} /repositories/ {} /artifacts/ {} " . format ( harbor_base_url , project_name , source_artifact_name , source_artifact_tag ) , " GET " , 200 )
copy_artifact = Permission ( " {} /projects/ {} /repositories/target_repo/artifacts?from= {} / {} : {} " . format ( harbor_base_url , project_name , project_name , source_artifact_name , source_artifact_tag ) , " POST " , 201 )
delete_artifact = Permission ( " {} /projects/ {} /repositories/target_repo/artifacts/ {} " . format ( harbor_base_url , project_name , source_artifact_tag ) , " DELETE " , 200 )
2023-11-22 09:13:04 +01:00
# 6. Resource scan actions: ['read', 'create', 'stop']
2023-12-08 07:10:19 +01:00
create_scan = Permission ( " {} /projects/ {} /repositories/ {} /artifacts/ {} /scan " . format ( harbor_base_url , project_name , source_artifact_name , source_artifact_tag ) , " POST " , 202 )
stop_scan = Permission ( " {} /projects/ {} /repositories/ {} /artifacts/ {} /scan/stop " . format ( harbor_base_url , project_name , source_artifact_name , source_artifact_tag ) , " POST " , 202 )
read_scan = Permission ( " {} /projects/ {} /repositories/ {} /artifacts/ {} /scan/0/log " . format ( harbor_base_url , project_name , source_artifact_name , source_artifact_tag ) , " get " , 404 )
2023-11-22 09:13:04 +01:00
# 7. Resource tag actions: ['list', 'create', 'delete']
2023-12-08 07:10:19 +01:00
tag_payload = { " name " : " test- {} " . format ( int ( random . randint ( 1000 , 9999 ) ) ) }
create_tag = Permission ( " {} /projects/ {} /repositories/ {} /artifacts/ {} /tags " . format ( harbor_base_url , project_name , source_artifact_name , source_artifact_tag ) , " POST " , 201 , tag_payload )
list_tag = Permission ( " {} /projects/ {} /repositories/ {} /artifacts/ {} /tags " . format ( harbor_base_url , project_name , source_artifact_name , source_artifact_tag ) , " GET " , 200 )
delete_tag = Permission ( " {} /projects/ {} /repositories/ {} /artifacts/ {} /tags/ {} " . format ( harbor_base_url , project_name , source_artifact_name , source_artifact_tag , tag_payload [ ' name ' ] ) , " DELETE " , 200 )
2023-11-22 09:13:04 +01:00
# 8. Resource accessory actions: ['list']
2023-12-08 07:10:19 +01:00
list_accessory = Permission ( " {} /projects/ {} /repositories/ {} /artifacts/ {} /accessories " . format ( harbor_base_url , project_name , source_artifact_name , source_artifact_tag ) , " GET " , 200 )
2023-11-22 09:13:04 +01:00
# 9. Resource artifact-addition actions: ['read']
2023-12-08 07:10:19 +01:00
read_artifact_addition_vul = Permission ( " {} /projects/ {} /repositories/ {} /artifacts/ {} /additions/vulnerabilities " . format ( harbor_base_url , project_name , source_artifact_name , source_artifact_tag ) , " GET " , 200 )
read_artifact_addition_dependencies = Permission ( " {} /projects/ {} /repositories/ {} /artifacts/ {} /additions/dependencies " . format ( harbor_base_url , project_name , source_artifact_name , source_artifact_tag ) , " GET " , 400 )
2023-11-22 09:13:04 +01:00
# 10. Resource artifact-label actions: ['create', 'delete'],
2023-12-08 07:10:19 +01:00
label_id = None
artifact_label_payload = None
if " artifact-label " in resources or " all " == resources :
label_payload = {
" name " : " label-name- {} " . format ( int ( random . randint ( 1000 , 9999 ) ) ) ,
" project_id " : int ( project_id ) ,
" scope " : " p "
}
response = requests . post ( " {} /labels " . format ( harbor_base_url ) , data = json . dumps ( label_payload ) , verify = False , auth = ( admin_user_name , admin_password ) , headers = { " Content-Type " : " application/json " } )
label_id = int ( response . headers [ " Location " ] . split ( " / " ) [ - 1 ] )
artifact_label_payload = { " id " : label_id }
add_label_to_artifact = Permission ( " {} /projects/ {} /repositories/ {} /artifacts/ {} /labels " . format ( harbor_base_url , project_name , source_artifact_name , source_artifact_tag ) , " POST " , 200 , artifact_label_payload )
delete_artifact_label = Permission ( " {} /projects/ {} /repositories/ {} /artifacts/ {} /labels/ {} " . format ( harbor_base_url , project_name , source_artifact_name , source_artifact_tag , label_id ) , " DELETE " , 200 )
2023-11-22 09:13:04 +01:00
# 11. Resource scanner actions: ['create', 'read']
2023-12-08 07:10:19 +01:00
update_project_scanner = Permission ( " {} /projects/ {} /scanner " . format ( harbor_base_url , project_id ) , " PUT " , 200 , { " uuid " : " faked_uuid " } )
2023-11-22 09:13:04 +01:00
read_project_scanner = Permission ( " {} /projects/ {} /scanner " . format ( harbor_base_url , project_id ) , " GET " , 200 )
2023-12-08 07:10:19 +01:00
read_project_scanner_candidates = Permission ( " {} /projects/ {} /scanner/candidates " . format ( harbor_base_url , project_id ) , " GET " , 200 )
2023-11-22 09:13:04 +01:00
# 12. Resource preheat-policy actions: ['read', 'list', 'create', 'update', 'delete']
2023-12-08 07:10:19 +01:00
create_preheat_policy = Permission ( " {} /projects/ {} /preheat/policies " . format ( harbor_base_url , project_name ) , " POST " , 500 , { } )
2023-11-22 09:13:04 +01:00
list_preheat_policy = Permission ( " {} /projects/ {} /preheat/policies " . format ( harbor_base_url , project_name ) , " GET " , 200 )
2023-12-08 07:10:19 +01:00
read_preheat_policy = Permission ( " {} /projects/ {} /preheat/policies/policy_name_does_not_exist " . format ( harbor_base_url , project_name ) , " GET " , 404 )
update_preheat_policy = Permission ( " {} /projects/ {} /preheat/policies/policy_name_does_not_exist " . format ( harbor_base_url , project_name ) , " PUT " , 500 )
delete_preheat_policy = Permission ( " {} /projects/ {} /preheat/policies/policy_name_does_not_exist " . format ( harbor_base_url , project_name ) , " DELETE " , 404 )
2023-11-22 09:13:04 +01:00
# 13. Resource immutable-tag actions: ['list', 'create', 'update', 'delete']
immutable_tag_rule_payload = {
" disabled " : False ,
" scope_selectors " : {
2023-12-08 07:10:19 +01:00
" repository " : [ { " kind " : " doublestar " , " decoration " : " repoMatches " , " pattern " : " {} " . format ( int ( random . randint ( 1000 , 9999 ) ) ) } ] } ,
" tag_selectors " : [ { " kind " : " doublestar " , " decoration " : " matches " , " pattern " : " {} " . format ( int ( random . randint ( 1000 , 9999 ) ) ) } ] ,
2023-11-22 09:13:04 +01:00
}
2023-12-08 07:10:19 +01:00
create_immutable_tag_rule = Permission ( " {} /projects/ {} /immutabletagrules " . format ( harbor_base_url , project_id ) , " POST " , 201 , immutable_tag_rule_payload )
2023-11-22 09:13:04 +01:00
list_immutable_tag_rule = Permission ( " {} /projects/ {} /immutabletagrules " . format ( harbor_base_url , project_id ) , " GET " , 200 )
2023-12-08 07:10:19 +01:00
update_immutable_tag_rule = Permission ( " {} /projects/ {} /immutabletagrules/0 " . format ( harbor_base_url , project_id ) , " PUT " , 404 )
delete_immutable_tag_rule = Permission ( " {} /projects/ {} /immutabletagrules/0 " . format ( harbor_base_url , project_id ) , " DELETE " , 404 )
2023-11-22 09:13:04 +01:00
# 14. Resource tag-retention actions: ['read', 'list', 'create', 'update', 'delete']
tag_retention_rule_payload = {
" algorithm " : " or " ,
" rules " : [
{
" disabled " : False ,
" action " : " retain " ,
" scope_selectors " : {
" repository " : [
{
" kind " : " doublestar " ,
" decoration " : " repoMatches " ,
" pattern " : " ** "
}
]
} ,
" tag_selectors " : [
{
" kind " : " doublestar " ,
" decoration " : " matches " ,
" pattern " : " ** " ,
" extras " : " { \" untagged \" :true} "
}
] ,
" params " : { } ,
" template " : " always "
}
] ,
" trigger " : {
" kind " : " Schedule " ,
" references " : { } ,
" settings " : {
" cron " : " "
}
} ,
" scope " : {
" level " : " project " ,
" ref " : int ( project_id )
}
}
2023-12-08 07:10:19 +01:00
# 15. Resource tag-retention actions: ['read', 'list', 'create', 'update', 'delete']
if " tag-retention " in resources or " all " == resources :
requests . delete ( " {} /projects/ {} /metadatas/retention_id " . format ( harbor_base_url , project_id ) , verify = False , auth = ( admin_user_name , admin_password ) )
create_tag_retention_rule = Permission ( " {} /retentions " . format ( harbor_base_url ) , " POST " , 201 , tag_retention_rule_payload , " id " , id_from_header = True )
read_tag_retention = Permission ( " {} /retentions/ {} " . format ( harbor_base_url , ID_PLACEHOLDER ) , " GET " , 200 , tag_retention_rule_payload , payload_id_field = " id " )
update_tag_retention = Permission ( " {} /retentions/ {} " . format ( harbor_base_url , ID_PLACEHOLDER ) , " PUT " , 200 , tag_retention_rule_payload , payload_id_field = " id " )
2023-12-14 04:26:25 +01:00
execute_tag_retention = Permission ( " {} /retentions/88888888/executions " . format ( harbor_base_url ) , " POST " , 400 , tag_retention_rule_payload , payload_id_field = " id " )
2023-12-08 07:10:19 +01:00
list_tag_retention_execution = Permission ( " {} /retentions/ {} /executions " . format ( harbor_base_url , ID_PLACEHOLDER ) , " GET " , 200 , tag_retention_rule_payload , payload_id_field = " id " )
tag_retention_rule_payload [ " action " ] = " stop "
2023-12-14 04:26:25 +01:00
stop_tag_retention = Permission ( " {} /retentions/ {} /executions/88888888 " . format ( harbor_base_url , ID_PLACEHOLDER ) , " PATCH " , 404 , tag_retention_rule_payload , payload_id_field = " id " )
list_tag_retention_tasks = Permission ( " {} /retentions/ {} /executions/88888888/tasks " . format ( harbor_base_url , ID_PLACEHOLDER ) , " GET " , 404 , tag_retention_rule_payload , payload_id_field = " id " )
read_tag_retention_tasks = Permission ( " {} /retentions/ {} /executions/88888888/tasks/88888888 " . format ( harbor_base_url , ID_PLACEHOLDER ) , " GET " , 404 , tag_retention_rule_payload , payload_id_field = " id " )
2023-12-08 07:10:19 +01:00
delete_tag_retention = Permission ( " {} /retentions/ {} " . format ( harbor_base_url , ID_PLACEHOLDER ) , " DELETE " , 200 , tag_retention_rule_payload , payload_id_field = " id " )
# 16. Resource log actions: ['list']
2023-11-22 09:13:04 +01:00
list_log = Permission ( " {} /projects/ {} /logs " . format ( harbor_base_url , project_name ) , " GET " , 200 )
2023-12-08 07:10:19 +01:00
# 17. Resource notification-policy actions: ['read', 'list', 'create', 'update', 'delete']
2023-11-22 09:13:04 +01:00
webhook_payload = {
2023-12-08 07:10:19 +01:00
" name " : " webhook- {} " . format ( int ( random . randint ( 1000 , 9999 ) ) ) ,
2023-11-22 09:13:04 +01:00
" description " : " Just for test " ,
" project_id " : int ( project_id ) ,
" targets " : [
{
" type " : " http " ,
" address " : " http://test.com " ,
" skip_cert_verify " : True ,
" payload_format " : " CloudEvents "
}
] ,
" event_types " : [
" PUSH_ARTIFACT "
] ,
" enabled " : True
}
2023-12-08 07:10:19 +01:00
create_webhook = Permission ( " {} /projects/ {} /webhook/policies " . format ( harbor_base_url , project_id ) , " POST " , 201 , webhook_payload , " id " , id_from_header = True )
list_webhook = Permission ( " {} /projects/ {} /webhook/policies " . format ( harbor_base_url , project_id ) , " GET " , 200 )
read_webhook = Permission ( " {} /projects/ {} /webhook/policies/ {} " . format ( harbor_base_url , project_id , ID_PLACEHOLDER ) , " GET " , 200 , webhook_payload , payload_id_field = " id " )
update_webhook = Permission ( " {} /projects/ {} /webhook/policies/ {} " . format ( harbor_base_url , project_id , ID_PLACEHOLDER ) , " PUT " , 200 , webhook_payload , payload_id_field = " id " )
list_webhook_executions = Permission ( " {} /projects/ {} /webhook/policies/ {} /executions " . format ( harbor_base_url , project_id , ID_PLACEHOLDER ) , " GET " , 200 , webhook_payload , payload_id_field = " id " )
2023-12-14 04:26:25 +01:00
list_webhook_executions_tasks = Permission ( " {} /projects/ {} /webhook/policies/ {} /executions/88888888/tasks " . format ( harbor_base_url , project_id , ID_PLACEHOLDER ) , " GET " , 404 , webhook_payload , payload_id_field = " id " )
read_webhook_executions_tasks = Permission ( " {} /projects/ {} /webhook/policies/ {} /executions/88888888/tasks/88888888/log " . format ( harbor_base_url , project_id , ID_PLACEHOLDER ) , " GET " , 404 , webhook_payload , payload_id_field = " id " )
2023-11-22 09:13:04 +01:00
list_webhook_events = Permission ( " {} /projects/ {} /webhook/events " . format ( harbor_base_url , project_id ) , " GET " , 200 )
2023-12-08 07:10:19 +01:00
delete_webhook = Permission ( " {} /projects/ {} /webhook/policies/ {} " . format ( harbor_base_url , project_id , ID_PLACEHOLDER ) , " DELETE " , 200 , webhook_payload , payload_id_field = " id " )
2023-11-22 09:13:04 +01:00
resource_permissions = {
" label " : [ create_label , list_label , read_label , update_label , delete_label ] ,
" project " : [ read_project , update_project , deletable_project , delete_project ] ,
" metadata " : [ create_metadata , list_metadata , read_metadata , update_metadata , delete_metadata ] ,
" repository " : [ list_repo , read_repo , update_repo , delete_repo ] ,
" artifact " : [ list_artifact , read_artifact , copy_artifact , delete_artifact ] ,
" scan " : [ create_scan , stop_scan , read_scan ] ,
" tag " : [ create_tag , list_tag , delete_tag ] ,
" accessory " : [ list_accessory ] ,
" artifact-addition " : [ read_artifact_addition_vul , read_artifact_addition_dependencies ] ,
" artifact-label " : [ add_label_to_artifact , delete_artifact_label ] ,
" scanner " : [ update_project_scanner , read_project_scanner , read_project_scanner_candidates ] ,
2023-12-08 07:10:19 +01:00
" preheat-policy " : [ create_preheat_policy , list_preheat_policy , read_preheat_policy , update_preheat_policy , delete_preheat_policy ] ,
" immutable-tag " : [ create_immutable_tag_rule , list_immutable_tag_rule , update_immutable_tag_rule , delete_immutable_tag_rule ] ,
" tag-retention " : [ create_tag_retention_rule , read_tag_retention , update_tag_retention , execute_tag_retention , list_tag_retention_execution , stop_tag_retention , list_tag_retention_tasks , read_tag_retention_tasks , delete_tag_retention ] ,
2023-11-22 09:13:04 +01:00
" log " : [ list_log ] ,
2023-12-08 07:10:19 +01:00
" notification-policy " : [ create_webhook , list_webhook , read_webhook , update_webhook , list_webhook_executions , list_webhook_executions_tasks , read_webhook_executions_tasks , list_webhook_events , delete_webhook ]
2023-11-22 09:13:04 +01:00
}
2023-12-08 07:10:19 +01:00
resource_permissions [ " all " ] = [ item for sublist in resource_permissions . values ( ) for item in sublist ]
2023-11-22 09:13:04 +01:00
def main ( ) :
2023-12-08 07:10:19 +01:00
for resource in resources . split ( " , " ) :
for permission in resource_permissions [ resource ] :
print ( " ================================================= " )
print ( " call: {} {} " . format ( permission . method , permission . url ) )
print ( " payload: {} " . format ( json . dumps ( permission . payload ) ) )
print ( " response: {} " . format ( permission . call ( ) . text ) )
print ( " ================================================= \n " )
2023-11-22 09:13:04 +01:00
if __name__ == " __main__ " :
main ( )