Commit a0a511b3 by Shirley He

update audit and verify to enrollment

parent 9493688c
...@@ -63,15 +63,17 @@ def generate_permutations(fields, index, results, current, fields_dict): ...@@ -63,15 +63,17 @@ def generate_permutations(fields, index, results, current, fields_dict):
for i in range(len(permutations_values)): for i in range(len(permutations_values)):
# add other required default fields to dict # add other required default fields to dict
current["number"] = "123" # will be generated automatically by course creation script
# generate different organization number for each course
# organization_number = "PM9003" + str(i) + "x"
current["number"] = None # will be generated automatically by course creation script
current["organization"] = "RITX" current["organization"] = "RITX"
current["run"] = "3T2017" current["run"] = "3T2017"
current["user"] = "edx@example.com" current["user"] = "edx@example.com"
current["partner"] = "edx" current["partner"] = "edx"
# configure enrollment seat settings
enrollment_dict = {}
enrollment_dict["credit"] = False
enrollment_dict["credit_provider"] = "test-credit-provider"
# enrollment_dict["audit"] = True
# add permutation fields to dict # add permutation fields to dict
fields_dict[permutation_option] = permutations_values[i] fields_dict[permutation_option] = permutations_values[i]
...@@ -85,14 +87,20 @@ def generate_permutations(fields, index, results, current, fields_dict): ...@@ -85,14 +87,20 @@ def generate_permutations(fields, index, results, current, fields_dict):
if permutations_values[i] == None: if permutations_values[i] == None:
fields_dict[permutation_option] = None fields_dict[permutation_option] = None
if all_permutations_keys[i] == "audit" and permutations_values[i] == True:
enrollment_dict["audit"] = permutations_values[i]
if all_permutations_keys[i] == "verify" and permutations_values[i] == True:
enrollment_dict["verify"] = True
if index + 1 < len(all_permutations_keys): if index + 1 < len(all_permutations_keys):
generate_permutations(fields, index + 1, results, current, fields_dict) generate_permutations(fields, index + 1, results, current, fields_dict)
# configure enrollment seat settings
enrollment_dict = {}
enrollment_dict["credit"] = False
enrollment_dict["credit_provider"] = "test-credit-provider"
current["enrollment"] = enrollment_dict current["enrollment"] = enrollment_dict
...@@ -100,7 +108,6 @@ def generate_permutations(fields, index, results, current, fields_dict): ...@@ -100,7 +108,6 @@ def generate_permutations(fields, index, results, current, fields_dict):
results.append(current.copy()) results.append(current.copy())
# results["courses"] = current.copy() # results["courses"] = current.copy()
# print results
wrapper_courses_dict = {} wrapper_courses_dict = {}
wrapper_courses_dict["courses"] = results wrapper_courses_dict["courses"] = results
......
{ {
"permutation_data": { "permutation_data": {
"display_name": [ "display_name": [
"International Project Management", "International Project Management",
"Cybersecurity Fundamentals", "Cybersecurity Fundamentals",
"", "",
...@@ -16,18 +16,14 @@ ...@@ -16,18 +16,14 @@
"future", "future",
null null
], ],
"seats": [ "audit": [
[ true,
"audit" false,
], null
[ ],
"verified" "verified": [
], true,
[ false,
"audit",
"verified"
],
[],
null null
], ],
...@@ -38,18 +34,19 @@ ...@@ -38,18 +34,19 @@
] ]
}, },
"default_data": { "default_data": {
"start": "past", "start": [
"end": "future", "past"
"seats": [ ],
{ "end": [
"type": [ "future"
"audit", ],
"verified" "display_name": [
], "International Project Management"
"upgrade_deadline": "future" ],
} "audit": [true],
], "verified": [true],
"display_name": "International Project Management", "mobile_available": [
"mobile_available": true true
]
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment