-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nicolas Burtey
committed
Dec 8, 2023
1 parent
edacbb8
commit 92b265b
Showing
13 changed files
with
82 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/usr/bin/env bats | ||
load "../../helpers/user.bash" | ||
|
||
@test "referral: alice is using bob referral" { | ||
local token_name=$1 | ||
local phone=$(random_phone) | ||
|
||
login_user "$token_name" "$phone" "bob" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import { checkedToReferral } from "@/domain/users" | ||
import { InputValidationError } from "@/graphql/error" | ||
import { GT } from "@/graphql/index" | ||
|
||
const Referral = GT.Scalar({ | ||
name: "Referral", | ||
description: "Referral code provided by a community", | ||
parseValue(value) { | ||
if (typeof value !== "string") { | ||
return new InputValidationError({ message: "Invalid type for Referral" }) | ||
} | ||
return validReferralValue(value) | ||
}, | ||
parseLiteral(ast) { | ||
if (ast.kind === GT.Kind.STRING) { | ||
return validReferralValue(ast.value) | ||
} | ||
return new InputValidationError({ message: "Invalid type for Referral" }) | ||
}, | ||
}) | ||
|
||
function validReferralValue(value: string) { | ||
const ReferralNumberValid = checkedToReferral(value) | ||
if (ReferralNumberValid instanceof Error) | ||
return new InputValidationError({ | ||
message: "Referral is not a valid", | ||
}) | ||
return ReferralNumberValid | ||
} | ||
|
||
export default Referral |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters