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

[#188587672]: Adjustments and enhancements #472

Merged
merged 1 commit into from
Nov 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
127 changes: 57 additions & 70 deletions integration/fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,89 +2,77 @@
import os
from unittest import TestCase

from scrunch.helpers import subvar_alias
from scrunch import connect
from scrunch.helpers import subvar_alias


class BaseIntegrationTestCase(TestCase):
def setUp(self):
self.host = os.environ["SCRUNCH_HOST"]
if self.host[-1] != "/":
self.host += "/"
username = os.environ["SCRUNCH_USER"]
password = os.environ["SCRUNCH_PASS"]
self.site = connect(username, password, self.host)
assert (self
.site is not None), "Unable to connect to %s" % self.host
api_key = os.environ.get("CRUNCH_API_KEY") or ""
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍🏽

self.site = connect(username, password, self.host, api_key=api_key)
assert self.site is not None, "Unable to connect to %s" % self.host


# These are the categories that multiple response use. Selected and Not Selected
MR_CATS = [
{"id": 1, "name": "Selected", "missing": False, "numeric_value": None, "selected": True},
{"id": 3, "name": "Other Selected", "missing": False, "numeric_value": None, "selected": True},
{"id": 2, "name": "Not selected", "missing": False, "numeric_value": None, "selected": False}
{
"id": 1,
"name": "Selected",
"missing": False,
"numeric_value": None,
"selected": True,
},
{
"id": 3,
"name": "Other Selected",
"missing": False,
"numeric_value": None,
"selected": True,
},
{
"id": 2,
"name": "Not selected",
"missing": False,
"numeric_value": None,
"selected": False,
},
]

NEWS_DATASET = {
"caseid": {
"name": "Case ID",
"type": "numeric"
},
"age": {
"name": "Age",
"type": 'numeric',
},
"caseid": {"name": "Case ID", "type": "numeric"},
"age": {"name": "Age", "type": "numeric"},
"newssource": {
"name": "News source",
"type": "multiple_response",
"categories": MR_CATS,
"subreferences": [{
"name": "Facebook",
"alias": "newssource_1"
}, {
"name": "Twitter",
"alias": "newssource_2"
}, {
"name": "Google news",
"alias": "newssource_3"
}, {
"name": "Reddit",
"alias": "newssource_4"
}, {
"name": "NY Times (Print)",
"alias": "newssource_5"
}, {
"name": "Washington Post (Print)",
"alias": "newssource_6"
}, {
"name": "NBC News",
"alias": "newssource_7"
}, {
"name": "NPR",
"alias": "newssource_8"
}, {
"name": "Fox",
"alias": "newssource_9"
}, {
"name": "Local radio",
"alias": "newssource_10"
}]
"subreferences": [
{"name": "Facebook", "alias": "newssource_1"},
{"name": "Twitter", "alias": "newssource_2"},
{"name": "Google news", "alias": "newssource_3"},
{"name": "Reddit", "alias": "newssource_4"},
{"name": "NY Times (Print)", "alias": "newssource_5"},
{"name": "Washington Post (Print)", "alias": "newssource_6"},
{"name": "NBC News", "alias": "newssource_7"},
{"name": "NPR", "alias": "newssource_8"},
{"name": "Fox", "alias": "newssource_9"},
{"name": "Local radio", "alias": "newssource_10"},
],
},
"socialmedia": {
"name": "Accounts in social media",
"type": "multiple_response",
"categories": MR_CATS,
"subreferences": [{
"name": "Facebook",
"alias": "socialmedia_1"
}, {
"name": "Twitter",
"alias": "socialmedia_2"
}, {
"name": "Google+",
"alias": "socialmedia_3"
}, {
"name": "VK",
"alias": "socialmedia_4"
}]
"subreferences": [
{"name": "Facebook", "alias": "socialmedia_1"},
{"name": "Twitter", "alias": "socialmedia_2"},
{"name": "Google+", "alias": "socialmedia_3"},
{"name": "VK", "alias": "socialmedia_4"},
],
},
"gender": {
"name": "Gender",
Expand All @@ -93,8 +81,8 @@ def setUp(self):
{"id": 1, "name": "Female", "missing": False, "numeric_value": None},
{"id": 2, "name": "Male", "missing": False, "numeric_value": None},
{"id": -1, "name": "No Data", "missing": True, "numeric_value": None},
]
}
],
},
}

RECODES_CSV_OUTPUT = """newssource_1,newssource_2,newssource_3,newssource_4,newssource_5,newssource_6,newssource_7,newssource_8,newssource_9,newssource_10,age,socialmedia_1,socialmedia_2,socialmedia_3,socialmedia_4,caseid,gender,agerange,origintype_1,origintype_2,origintype_3,origintype_4,origintype_copy_1,origintype_copy_2,origintype_copy_3,origintype_copy_4,onlinenewssource_1,onlinenewssource_2,over35
Expand Down Expand Up @@ -122,7 +110,7 @@ def setUp(self):
"socialmedia_2": [1, 2, 1, 1, 2, 1, 2],
"socialmedia_3": [2, 2, 1, 2, 2, 1, 2],
"socialmedia_4": [2, 2, 1, 2, 2, 2, 2],
"gender": [1, 2, 2, 1, 1, 1, 2]
"gender": [1, 2, 2, 1, 1, 1, 2],
}


Expand All @@ -131,14 +119,13 @@ def mr_in(ds, mr_alias, subvars):
Temporary helper until scrunch can parse correctly the expression:
mr.has_any([sv1, sv2...])
"""
variables = ds.resource.variables.by('alias')
variables = ds.resource.variables.by("alias")
mr = variables[mr_alias].entity
subvariables = mr.subvariables.by('alias')
subvariables = mr.subvariables.by("alias")
return {
'function': 'any',
'args': [{
'variable': mr.self
}, {
'column': [subvariables[subvar_alias(mr_alias, sv)].id for sv in subvars]
}]
"function": "any",
"args": [
{"variable": mr.self},
{"column": [subvariables[subvar_alias(mr_alias, sv)].id for sv in subvars]},
],
}
2 changes: 1 addition & 1 deletion pytest.ini
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[pytest]
norecursedirs=dist build .tox .eggs examples
addopts=--doctest-modules --cov=scrunch --cov-config=.coveragerc -p no:sugar
addopts=--doctest-modules -p no:sugar
doctest_optionflags=ALLOW_UNICODE ELLIPSIS
22 changes: 17 additions & 5 deletions scrunch/session.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
from pycrunch.version import __version__ as pycrunch_version
import os

from pycrunch import connect as _connect
from pycrunch.elements import ElementSession
from pycrunch.version import __version__ as pycrunch_version

from .version import __version__

SSL_UNSAFE = os.environ.get("SSL_UNSAFE", "").strip().lower() in (
"1",
"true",
"yes",
"y",
)


class ScrunchSession(ElementSession):
headers = {
Expand All @@ -16,6 +25,7 @@ class ScrunchSSLUnsafeSession(ScrunchSession):
A subclass of `ScrunchSession` that skips SSL certificate validation
when trying to connect to the API server. Useful for local testing.
"""

def __init__(self, *args, **kwargs):
super(ScrunchSSLUnsafeSession, self).__init__(*args, **kwargs)
self.verify = False
Expand All @@ -26,15 +36,17 @@ def __init__(self, *args, **kwargs):

def set_feature_flags(site):
feature_flags = {
flag_name: site.follow('feature_flag',
'feature_name=%s' % flag_name).value['active']
flag_name: site.follow("feature_flag", "feature_name=%s" % flag_name).value[
"active"
]
for flag_name in FLAGS_TO_CHECK
}
setattr(site.session, 'feature_flags', feature_flags)
setattr(site.session, "feature_flags", feature_flags)
return site


def connect(*args, **kwargs):
_site = _connect(session_class=ScrunchSession, *args, **kwargs)
session_class = ScrunchSSLUnsafeSession if SSL_UNSAFE else ScrunchSession
_site = _connect(session_class=session_class, *args, **kwargs)
_site = set_feature_flags(_site)
return _site
Loading