2021-04-17 20:07:23 +05:30
export const mockRefs = {
2021-06-08 01:23:25 +05:30
Branches : [ 'main' , 'branch-1' , 'branch-2' ] ,
2021-04-17 20:07:23 +05:30
Tags : [ '1.0.0' , '1.1.0' , '1.2.0' ] ,
} ;
2021-02-22 17:27:13 +05:30
2021-04-17 20:07:23 +05:30
export const mockFilteredRefs = {
Branches : [ 'branch-1' ] ,
Tags : [ '1.0.0' , '1.1.0' ] ,
} ;
2020-10-24 23:57:45 +05:30
2021-04-17 20:07:23 +05:30
export const mockQueryParams = {
2020-10-24 23:57:45 +05:30
refParam : 'tag-1' ,
variableParams : {
test _var : 'test_var_val' ,
} ,
fileParams : {
test _file : 'test_file_val' ,
} ,
} ;
export const mockProjectId = '21' ;
export const mockPostParams = {
ref : 'tag-1' ,
2021-01-03 14:25:43 +05:30
variables _attributes : [
{ key : 'test_var' , secret _value : 'test_var_val' , variable _type : 'env_var' } ,
{ key : 'test_file' , secret _value : 'test_file_val' , variable _type : 'file' } ,
2020-10-24 23:57:45 +05:30
] ,
} ;
2020-11-24 15:15:51 +05:30
export const mockError = {
errors : [
'test job: chosen stage does not exist; available stages are .pre, build, test, deploy, .post' ,
] ,
warnings : [
'jobs:build1 may allow multiple pipelines to run for a single action due to `rules:when` clause with no `workflow:rules` - read more: https://docs.gitlab.com/ee/ci/troubleshooting.html#pipeline-warnings' ,
'jobs:build2 may allow multiple pipelines to run for a single action due to `rules:when` clause with no `workflow:rules` - read more: https://docs.gitlab.com/ee/ci/troubleshooting.html#pipeline-warnings' ,
'jobs:build3 may allow multiple pipelines to run for a single action due to `rules:when` clause with no `workflow:rules` - read more: https://docs.gitlab.com/ee/ci/troubleshooting.html#pipeline-warnings' ,
] ,
total _warnings : 7 ,
} ;
2021-02-22 17:27:13 +05:30
2021-06-08 01:23:25 +05:30
export const mockCreditCardValidationRequiredError = {
errors : [ 'Credit card required to be on file in order to create a pipeline' ] ,
warnings : [ ] ,
total _warnings : 0 ,
} ;
export const mockBranchRefs = [ 'main' , 'dev' , 'release' ] ;
2021-02-22 17:27:13 +05:30
export const mockTagRefs = [ '1.0.0' , '1.1.0' , '1.2.0' ] ;
2021-06-08 01:23:25 +05:30
export const mockVariables = [
{
uniqueId : 'var-refs/heads/main2' ,
variable _type : 'env_var' ,
key : 'var_without_value' ,
value : '' ,
} ,
{
uniqueId : 'var-refs/heads/main3' ,
variable _type : 'env_var' ,
key : 'var_with_value' ,
value : 'test_value' ,
} ,
{ uniqueId : 'var-refs/heads/main4' , variable _type : 'env_var' , key : '' , value : '' } ,
] ;
2022-11-25 23:54:43 +05:30
export const mockYamlVariables = [
{
description : 'This is a variable with a value.' ,
key : 'VAR_WITH_VALUE' ,
value : 'test_value' ,
valueOptions : null ,
} ,
{
description : 'This is a variable with a multi-line value.' ,
key : 'VAR_WITH_MULTILINE' ,
value : ` this is
a multiline value ` ,
valueOptions : null ,
} ,
{
description : 'This is a variable with predefined values.' ,
key : 'VAR_WITH_OPTIONS' ,
value : 'development' ,
valueOptions : [ 'development' , 'staging' , 'production' ] ,
} ,
] ;
export const mockYamlVariablesWithoutDesc = [
{
description : 'This is a variable with a value.' ,
key : 'VAR_WITH_VALUE' ,
value : 'test_value' ,
valueOptions : null ,
} ,
{
description : null ,
key : 'VAR_WITH_MULTILINE' ,
value : ` this is
a multiline value ` ,
valueOptions : null ,
} ,
{
description : null ,
key : 'VAR_WITH_OPTIONS' ,
value : 'development' ,
valueOptions : [ 'development' , 'staging' , 'production' ] ,
} ,
] ;
export const mockCiConfigVariablesQueryResponse = ( ciConfigVariables ) => ( {
data : {
project : {
id : 1 ,
ciConfigVariables ,
} ,
} ,
} ) ;
export const mockCiConfigVariablesResponse = mockCiConfigVariablesQueryResponse ( mockYamlVariables ) ;
export const mockEmptyCiConfigVariablesResponse = mockCiConfigVariablesQueryResponse ( [ ] ) ;
export const mockCiConfigVariablesResponseWithoutDesc = mockCiConfigVariablesQueryResponse (
mockYamlVariablesWithoutDesc ,
) ;