Skip to content

Commit df27d0e

Browse files
authored
Flip value and initial for dynamic challenges to better support ctfcli (#1921)
* Makes the initial value for a dynamic challenge provided by the `initial` argument instead of the `value` argument. This makes it easier to support ctfcli. Refer to CTFd/ctfcli#13. * Closes #1875
1 parent 614f086 commit df27d0e

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

CTFd/plugins/dynamic_challenges/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class DynamicChallenge(Challenges):
2222

2323
def __init__(self, *args, **kwargs):
2424
super(DynamicChallenge, self).__init__(**kwargs)
25-
self.initial = kwargs["value"]
25+
self.value = kwargs["initial"]
2626

2727

2828
class DynamicValueChallenge(BaseChallenge):

CTFd/plugins/dynamic_challenges/assets/create.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
This is how many points the challenge is worth initially.
1616
</small>
1717
</label>
18-
<input type="number" class="form-control" name="value" placeholder="Enter value" required>
18+
<input type="number" class="form-control" name="initial" placeholder="Enter value" required>
1919

2020
</div>
2121

tests/challenges/test_challenge_types.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def test_missing_challenge_type():
1616
"name": "name",
1717
"category": "category",
1818
"description": "description",
19-
"value": 100,
19+
"initial": 100,
2020
"decay": 20,
2121
"minimum": 1,
2222
"state": "visible",

tests/challenges/test_dynamic.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def test_can_create_dynamic_challenge():
2626
"name": "name",
2727
"category": "category",
2828
"description": "description",
29-
"value": 100,
29+
"initial": 100,
3030
"decay": 20,
3131
"minimum": 1,
3232
"state": "hidden",
@@ -54,7 +54,7 @@ def test_can_update_dynamic_challenge():
5454
"name": "name",
5555
"category": "category",
5656
"description": "description",
57-
"value": 100,
57+
"initial": 100,
5858
"decay": 20,
5959
"minimum": 1,
6060
"state": "hidden",
@@ -102,7 +102,7 @@ def test_can_add_requirement_dynamic_challenge():
102102
"name": "name",
103103
"category": "category",
104104
"description": "description",
105-
"value": 100,
105+
"initial": 100,
106106
"decay": 20,
107107
"minimum": 1,
108108
"state": "hidden",
@@ -160,7 +160,7 @@ def test_can_delete_dynamic_challenge():
160160
"name": "name",
161161
"category": "category",
162162
"description": "description",
163-
"value": 100,
163+
"initial": 100,
164164
"decay": 20,
165165
"minimum": 1,
166166
"state": "hidden",
@@ -191,7 +191,7 @@ def test_dynamic_challenge_loses_value_properly():
191191
"name": "name",
192192
"category": "category",
193193
"description": "description",
194-
"value": 100,
194+
"initial": 100,
195195
"decay": 20,
196196
"minimum": 1,
197197
"state": "visible",
@@ -240,7 +240,7 @@ def test_dynamic_challenge_doesnt_lose_value_on_update():
240240
"name": "name",
241241
"category": "category",
242242
"description": "description",
243-
"value": 10000,
243+
"initial": 10000,
244244
"decay": 4,
245245
"minimum": 10,
246246
"state": "visible",
@@ -273,7 +273,7 @@ def test_dynamic_challenge_value_isnt_affected_by_hidden_users():
273273
"name": "name",
274274
"category": "category",
275275
"description": "description",
276-
"value": 100,
276+
"initial": 100,
277277
"decay": 20,
278278
"minimum": 1,
279279
"state": "visible",
@@ -330,7 +330,7 @@ def test_dynamic_challenges_reset():
330330
"name": "name",
331331
"category": "category",
332332
"description": "description",
333-
"value": 100,
333+
"initial": 100,
334334
"decay": 20,
335335
"minimum": 1,
336336
"state": "hidden",

0 commit comments

Comments
 (0)