Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated checks for validate_name() in MemberForm() #1106

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion ihatemoney/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,6 @@ def validate_name(self, field):
and Person.query.filter(
Person.name == field.data,
Person.project == self.project,
Person.activated,
).all()
): # NOQA
raise ValidationError(_("This project already have this participant"))
Expand Down
61 changes: 61 additions & 0 deletions ihatemoney/tests/budget_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1654,6 +1654,67 @@ def test_amount_too_high(self):
# No bills, the previous one was not added
self.assertIn("No bills", resp.data.decode("utf-8"))


def test_add_duplicate_user(self):

'''
Adding a user with same name as a deactivated user with 0 balance
and no associated bills should success
'''
self.post_project("raclette")
self.login("raclette")

# adds a member to this project
self.client.post("/raclette/members/add", data={"name": "zorglub"})

# delete user using POST method
self.client.post("/raclette/members/1/delete")
self.assertEqual(len(self.get_project("raclette").active_members), 0)
self.assertEqual(len(self.get_project("raclette").members), 0)
# try to add this deleted user should be successful
response = self.client.get("/raclette/members/add", data={"name": "zorglub"})
self.assertEqual(len(self.get_project("raclette").members), 1)
self.assertEqual(response.status_code, 200)


def test_add_duplicate_user_with_balance(self):
'''
Adding a user with same name as a deactivated user with non-zero balance
and associated bills should fail
'''
self.post_project("raclette")

# add two participants
self.client.post("/raclette/members/add", data={"name": "Alice"})
self.client.post("/raclette/members/add", data={"name": "Bob"})

members_ids = [m.id for m in self.get_project("raclette").members]

# create one bill
self.client.post(
"/raclette/add",
data={
"date": "2011-08-10",
"what": "fromage à raclette",
"payer": members_ids[0],
"payed_for": members_ids,
"amount": "100",
},
)

# deactivate Bob
self.client.post(
"/raclette/members/%s/delete" % self.get_project("raclette").members[-1].id
)

self.assertEqual(len(self.get_project("raclette").members), 2)
self.client.post("/raclette/members/add", data={"name": "Bob"})

# adding a user with the same name should fail
self.assertEqual(len(self.get_project("raclette").members), 2)
# The only active_member is Alice, this means adding a new Bob failed
self.assertEqual(len(self.get_project("raclette").active_members), 1)


if __name__ == "__main__":
unittest.main()