@@ -608,6 +608,17 @@ public function testUpdateBoardLabelNameYellow()
608
608
$ this ->assertExpectedEqualsResult ($ payload , $ result );
609
609
}
610
610
611
+ public function testGetBoardCustomFields ()
612
+ {
613
+ $ boardId = $ this ->getTestString ();
614
+ $ payload = $ this ->getSuccessPayload ();
615
+ $ this ->prepareFor ("GET " , sprintf ("/boards/%s/customFields " , $ boardId ), "" , $ payload );
616
+
617
+ $ result = $ this ->client ->getBoardCustomFields ($ boardId );
618
+
619
+ $ this ->assertExpectedEqualsResult ($ payload , $ result );
620
+ }
621
+
611
622
public function testGetBoardLabels ()
612
623
{
613
624
$ boardId = $ this ->getTestString ();
@@ -1308,6 +1319,19 @@ public function testDeleteCardChecklistCheckItem()
1308
1319
$ this ->assertExpectedEqualsResult ($ payload , $ result );
1309
1320
}
1310
1321
1322
+ public function testUpdateCardCustomField ()
1323
+ {
1324
+ $ cardId = $ this ->getTestString ();
1325
+ $ customFieldId = $ this ->getTestString ();
1326
+ $ attributes = $ this ->getTestAttributes ();
1327
+ $ payload = $ this ->getSuccessPayload ();
1328
+ $ this ->prepareFor ("PUT " , sprintf ("/cards/%s/customField/%s " , $ cardId , $ customFieldId ), "" , $ payload );
1329
+
1330
+ $ result = $ this ->client ->updateCardCustomField ($ cardId , $ customFieldId , $ attributes );
1331
+
1332
+ $ this ->assertExpectedEqualsResult ($ payload , $ result );
1333
+ }
1334
+
1311
1335
public function testUpdateCardChecklistCheckItem ()
1312
1336
{
1313
1337
$ cardId = $ this ->getTestString ();
@@ -1944,6 +1968,54 @@ public function testUpdateChecklistPos()
1944
1968
$ this ->assertExpectedEqualsResult ($ payload , $ result );
1945
1969
}
1946
1970
1971
+ public function testAddCustomField ()
1972
+ {
1973
+ $ attributes = $ this ->getTestAttributes ();
1974
+ $ payload = $ this ->getSuccessPayload ();
1975
+ $ this ->prepareFor ("POST " , "/customFields " , "" , $ payload );
1976
+
1977
+ $ result = $ this ->client ->addCustomField ($ attributes );
1978
+
1979
+ $ this ->assertExpectedEqualsResult ($ payload , $ result );
1980
+ }
1981
+
1982
+ public function testAddCustomFieldOption ()
1983
+ {
1984
+ $ customFieldId = $ this ->getTestString ();
1985
+ $ attributes = $ this ->getTestAttributes ();
1986
+ $ payload = $ this ->getSuccessPayload ();
1987
+ $ this ->prepareFor ("POST " , sprintf ("/customField/%s/options " , $ customFieldId ), "" , $ payload );
1988
+
1989
+ $ result = $ this ->client ->addCustomFieldOption ($ customFieldId , $ attributes );
1990
+
1991
+ $ this ->assertExpectedEqualsResult ($ payload , $ result );
1992
+ }
1993
+
1994
+ public function testUpdateCustomFieldOption ()
1995
+ {
1996
+ $ customFieldId = $ this ->getTestString ();
1997
+ $ optionId = $ this ->getTestString ();
1998
+ $ attributes = $ this ->getTestAttributes ();
1999
+ $ payload = $ this ->getSuccessPayload ();
2000
+ $ this ->prepareFor ("PUT " , sprintf ("/customField/%s/options/%s " , $ customFieldId , $ optionId ), "" , $ payload );
2001
+
2002
+ $ result = $ this ->client ->updateCustomFieldOption ($ customFieldId , $ optionId , $ attributes );
2003
+
2004
+ $ this ->assertExpectedEqualsResult ($ payload , $ result );
2005
+ }
2006
+
2007
+ public function testDeleteCustomFieldOption ()
2008
+ {
2009
+ $ customFieldId = $ this ->getTestString ();
2010
+ $ attributes = $ this ->getTestAttributes ();
2011
+ $ payload = $ this ->getSuccessPayload ();
2012
+ $ this ->prepareFor ("DELETE " , sprintf ("/customField/%s " , $ customFieldId ), "" , $ payload );
2013
+
2014
+ $ result = $ this ->client ->deleteCustomField ($ customFieldId );
2015
+
2016
+ $ this ->assertExpectedEqualsResult ($ payload , $ result );
2017
+ }
2018
+
1947
2019
public function testAddLabel ()
1948
2020
{
1949
2021
$ attributes = $ this ->getTestAttributes ();
0 commit comments