Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
greg
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
it-bott-integrasjoner
greg
Commits
4a232b4e
Commit
4a232b4e
authored
2 years ago
by
Marte Fossum
Browse files
Options
Downloads
Plain Diff
Merge branch 'GREG-306-role-ends-email' into 'master'
Greg 306 role ends email See merge request
!365
parents
3e5339c4
4cb32b07
No related branches found
No related tags found
1 merge request
!365
Greg 306 role ends email
Pipeline
#176430
passed
2 years ago
Stage: venv update
Stage: tests and linting
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
greg/tasks.py
+12
-5
12 additions, 5 deletions
greg/tasks.py
greg/tests/test_tasks.py
+97
-3
97 additions, 3 deletions
greg/tests/test_tasks.py
with
109 additions
and
8 deletions
greg/tasks.py
+
12
−
5
View file @
4a232b4e
...
...
@@ -44,11 +44,18 @@ def notify_sponsors_roles_ending() -> list[str]:
sp2unit
=
{
s
.
id
:
list
(
s
.
get_allowed_units
())
for
s
in
sponsors
}
# Map sponsors to ending roles
sp2roles
=
defaultdict
(
list
)
for
sp
,
units
in
sp2unit
.
items
():
for
unit
in
units
:
for
role
in
unit2roles
[
unit
.
id
]:
sp2roles
[
sp
].
append
(
role
)
# Make sure only the sponsor(s) closest to the role is notified
sp2roles
:
dict
=
defaultdict
(
list
)
for
unit_id
,
roles
in
unit2roles
.
items
():
for
role
in
roles
:
role_notified
=
False
for
sp
,
units
in
reversed
(
sp2unit
.
items
()):
for
unit
in
units
:
if
unit_id
==
unit
.
id
and
(
not
role_notified
or
unit
.
parent
not
in
units
):
sp2roles
[
sp
].
append
(
role
)
role_notified
=
True
# Send emails to sponsors
remindermailer
=
RolesEnding
()
...
...
This diff is collapsed.
Click to expand it.
greg/tests/test_tasks.py
+
97
−
3
View file @
4a232b4e
...
...
@@ -4,9 +4,17 @@ import pytest
from
django.conf
import
settings
from
django.core
import
mail
from
django.test
import
override_settings
from
orgreg_client
import
OrgUnit
,
OrgUnitList
from
greg.models
import
OrganizationalUnit
,
OuIdentifier
from
orgreg_client.models
import
OrgUnit
,
OrgUnitList
from
greg.models
import
(
OrganizationalUnit
,
OuIdentifier
,
Person
,
Role
,
RoleType
,
Sponsor
,
SponsorOrganizationalUnit
,
)
from
greg.tasks
import
import_from_orgreg
,
notify_sponsors_roles_ending
from
gregui.models
import
EmailTemplate
...
...
@@ -27,6 +35,69 @@ To extend the guest role please use the web interface.""",
return
EmailTemplate
.
objects
.
get
(
id
=
et
.
id
)
@pytest.fixture
def
org_tree_with_sponsors
(
person_foo
:
Person
,
role_type_test_guest
:
RoleType
,
role_type_foo
:
RoleType
):
# Create all units
a
=
OrganizationalUnit
.
objects
.
create
()
b
=
OrganizationalUnit
.
objects
.
create
(
parent
=
a
)
c
=
OrganizationalUnit
.
objects
.
create
(
parent
=
b
)
# Create all sponsors
d
=
Sponsor
.
objects
.
create
(
feide_id
=
"
d@example.org
"
,
first_name
=
"
D
"
,
last_name
=
"
Guy
"
,
work_email
=
"
d_guy@example.com
"
,
)
e
=
Sponsor
.
objects
.
create
(
feide_id
=
"
e@example.org
"
,
first_name
=
"
E
"
,
last_name
=
"
Guy
"
,
work_email
=
"
e_guy@example.com
"
,
)
f
=
Sponsor
.
objects
.
create
(
feide_id
=
"
f@example.org
"
,
first_name
=
"
F
"
,
last_name
=
"
Guy
"
,
work_email
=
"
f_guy@example.com
"
,
)
g
=
Sponsor
.
objects
.
create
(
feide_id
=
"
g@example.org
"
,
first_name
=
"
G
"
,
last_name
=
"
Guy
"
,
work_email
=
"
g_guy@example.com
"
,
)
# Connect them to units
SponsorOrganizationalUnit
.
objects
.
create
(
sponsor
=
d
,
organizational_unit
=
a
,
hierarchical_access
=
True
)
SponsorOrganizationalUnit
.
objects
.
create
(
sponsor
=
e
,
organizational_unit
=
b
,
hierarchical_access
=
True
)
# Create person with role on unit c and b
Role
.
objects
.
create
(
person
=
person_foo
,
type
=
role_type_test_guest
,
start_date
=
datetime
.
date
.
today
(),
end_date
=
datetime
.
date
.
today
()
+
datetime
.
timedelta
(
days
=
5
),
sponsor
=
f
,
orgunit
=
c
,
)
Role
.
objects
.
create
(
person
=
person_foo
,
type
=
role_type_foo
,
start_date
=
datetime
.
date
.
today
(),
end_date
=
datetime
.
date
.
today
()
+
datetime
.
timedelta
(
days
=
5
),
sponsor
=
e
,
orgunit
=
b
,
)
return
a
,
b
,
c
,
d
,
e
,
f
,
g
@pytest.mark.django_db
def
test_notify_sponsors_roles_ending
(
role_end_reminder_template
,
role_person_foo2
,
sponsor_org_unit
...
...
@@ -36,6 +107,29 @@ def test_notify_sponsors_roles_ending(
assert
len
(
task_ids
)
==
1
@pytest.mark.django_db
def
test_sponsor_get_email
(
role_end_reminder_template
,
org_tree_with_sponsors
):
mail
.
outbox
=
[]
task_ids
=
notify_sponsors_roles_ending
()
assert
len
(
task_ids
)
==
1
@pytest.mark.django_db
def
test_only_close_sponsors_get_email
(
role_end_reminder_template
,
org_tree_with_sponsors
):
_
,
_
,
c
,
_
,
_
,
f
,
g
=
org_tree_with_sponsors
SponsorOrganizationalUnit
.
objects
.
create
(
sponsor
=
f
,
organizational_unit
=
c
,
hierarchical_access
=
True
)
SponsorOrganizationalUnit
.
objects
.
create
(
sponsor
=
g
,
organizational_unit
=
c
,
hierarchical_access
=
True
)
mail
.
outbox
=
[]
task_ids
=
notify_sponsors_roles_ending
()
assert
len
(
task_ids
)
==
3
@pytest.fixture
def
old_unit
():
ou
=
OrganizationalUnit
.
objects
.
create
(
name_nb
=
"
a
"
,
name_en
=
"
b
"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment