mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
149 lines
4.7 KiB
149 lines
4.7 KiB
package main |
|
|
|
import ( |
|
"testing" |
|
|
|
"github.com/01-edu/z01" |
|
|
|
solutions "../../solutions" // This line is not necessary when testing an exercise with a program |
|
) |
|
|
|
type stuNode = NodeAddL |
|
type solNode = solutions.NodeAddL |
|
|
|
func stuPushFront(node *stuNode, num int) *stuNode { |
|
tmp := &stuNode{Num: num} |
|
tmp.Next = node |
|
return tmp |
|
} |
|
|
|
func stuNumToList(num int) *stuNode { |
|
var res *stuNode |
|
for num > 0 { |
|
res = stuPushFront(res, num%10) |
|
num /= 10 |
|
} |
|
return res |
|
} |
|
|
|
func stuListToNum(node *stuNode) int { |
|
var n int |
|
|
|
for tmp := node; tmp != nil; tmp = tmp.Next { |
|
n = n*10 + tmp.Num |
|
} |
|
return n |
|
} |
|
|
|
func solPushFront(node *solNode, num int) *solNode { |
|
tmp := &solNode{Num: num} |
|
tmp.Next = node |
|
return tmp |
|
} |
|
|
|
func solNumToList(num int) *solNode { |
|
var res *solNode |
|
for num > 0 { |
|
res = solPushFront(res, num%10) |
|
num /= 10 |
|
} |
|
return res |
|
} |
|
|
|
func solListToNum(node *solNode) int { |
|
var n int |
|
|
|
for tmp := node; tmp != nil; tmp = tmp.Next { |
|
n = n*10 + tmp.Num |
|
} |
|
return n |
|
} |
|
|
|
func compareNodes(t *testing.T, stuResult *stuNode, solResult *solNode, num1 int) { |
|
if stuResult != nil && solResult != nil { |
|
stuNum := stuListToNum(stuResult) |
|
solNum := solListToNum(solResult) |
|
if stuNum != solNum { |
|
t.Fatalf("\nReverse(%d) == %v instead of %v\n\n", |
|
num1, stuNum, solNum) |
|
} |
|
} else if stuResult != nil && solResult == nil { |
|
stuNum := stuListToNum(stuResult) |
|
t.Fatalf("\nReverse(%d) == %v instead of %v\n\n", |
|
num1, stuNum, "") |
|
} else if stuResult == nil && solResult != nil { |
|
solNum := solListToNum(solResult) |
|
t.Fatalf("\nReverse(%d) == %v instead of %v\n\n", |
|
num1, "", solNum) |
|
} |
|
} |
|
|
|
func TestReverse(t *testing.T) { |
|
// Declaration of the node that is going to take the group of arguments that are going to |
|
// inputed during each iteration of a Challenge between the student and the staff solution. |
|
// (note: a node is not always necessary but in this case it makes the writing of the test easier) |
|
|
|
type node struct { |
|
num1 int |
|
} |
|
|
|
// Declaration of an empty array of type node{} |
|
// note that in this case this is the easiest type of table to declare |
|
// but a table can be of any other relevant type, (for example []string{}, []int{} if it |
|
// were a single string tested or a single int) |
|
|
|
table := []node{} |
|
// Initial filling of that array with the values I see in the examples of the subject |
|
|
|
table = append(table, |
|
node{123456543}, |
|
) |
|
|
|
// If we were to leave the table as it is, a student could just do a program with 4 ifs and get |
|
// "around" the goal of the exercise. We are now going to add 15 random tests using the z01 testing library |
|
|
|
for i := 0; i < 15; i++ { |
|
value := node{ |
|
num1: z01.RandIntBetween(0, 1000000000), |
|
//this z01.RandIntBetween function allows the randomization of |
|
//the int for each value in a desired range. |
|
//Note that they are many others of those functions for other types of data |
|
//Do not hesitate to have a look at all of them https://github.com/01-edu/z01 |
|
} |
|
|
|
//Once the random node created, this iteration is added to the earlier declared table |
|
//along with the 4 specific examples taken from the examples of the readme. |
|
table = append(table, value) |
|
} |
|
|
|
//The table with 4 specific exercises and 15 randoms is now ready to be "challenged" |
|
//Because the exercise asks for a function we are now using the Challenge function (this function would |
|
// be the ChallengeMainExam function) |
|
|
|
for _, arg := range table { |
|
stuResult := Reverse(stuNumToList(arg.num1)) |
|
solResult := solutions.Reverse(solNumToList(arg.num1)) |
|
|
|
compareNodes(t, stuResult, solResult, arg.num1) |
|
} |
|
|
|
// the z01.Challenge function is here applied to each argument of the table. It musts contains: |
|
// 1) first, the t argument from the T structure imported from the package "testing" |
|
// |
|
// 2) second, the function from the student, in this case Nauuo |
|
//(this disapears in the ChallengeMainExam function) |
|
// 3) third, the function from the staff, in this case solutions.Nauuo |
|
//(this disapears as well in the ChallengeMainExam function) |
|
// 4) all the arguments to be tested, in this case it is the plus, minus and rand from each structure, |
|
// notice that they are accessed with arg. (the arg notation comes from the way it was name in the |
|
// range loop over the table) |
|
|
|
// Now that this is done. re-read the quickReadme (the test your test recap) and apply all the commands |
|
// and intructions. We strongly advise to check that your error messages matches your subject. |
|
// and that you ask a colleague to double check. |
|
|
|
//FINAL STEP: |
|
// When both are satisfied with the coherence between the subject and its tests. The code can be commited |
|
// and redeployed by the team-01. |
|
// We then advised the staff team to test the new exercise invidually with their current build of the exam |
|
}
|
|
|