Skip to content

Commit

Permalink
fix: reading the labels attribute on Job instances (#471)
Browse files Browse the repository at this point in the history
  • Loading branch information
plamut committed Jan 14, 2021
1 parent d7fc252 commit 80944f0
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
7 changes: 3 additions & 4 deletions google/cloud/bigquery/job/base.py
Expand Up @@ -233,7 +233,7 @@ def path(self):
@property
def labels(self):
"""Dict[str, str]: Labels for the job."""
return self._properties.setdefault("labels", {})
return self._properties.setdefault("configuration", {}).setdefault("labels", {})

@property
def etag(self):
Expand Down Expand Up @@ -671,9 +671,8 @@ def __setattr__(self, name, value):
def labels(self):
"""Dict[str, str]: Labels for the job.
This method always returns a dict. To change a job's labels,
modify the dict, then call ``Client.update_job``. To delete a
label, set its value to :data:`None` before updating.
This method always returns a dict. Once a job has been created on the
server, its labels cannot be modified anymore.
Raises:
ValueError: If ``value`` type is invalid.
Expand Down
17 changes: 17 additions & 0 deletions tests/system.py
Expand Up @@ -1667,6 +1667,23 @@ def test_job_cancel(self):
# raise an error, and that the job completed (in the `retry()`
# above).

def test_job_labels(self):
DATASET_ID = _make_dataset_id("job_cancel")
JOB_ID_PREFIX = "fetch_" + DATASET_ID
QUERY = "SELECT 1 as one"

self.temp_dataset(DATASET_ID)

job_config = bigquery.QueryJobConfig(
labels={"custom_label": "label_value", "another_label": "foo123"}
)
job = Config.CLIENT.query(
QUERY, job_id_prefix=JOB_ID_PREFIX, job_config=job_config
)

expected_labels = {"custom_label": "label_value", "another_label": "foo123"}
self.assertEqual(job.labels, expected_labels)

def test_get_failed_job(self):
# issue 4246
from google.api_core.exceptions import BadRequest
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/job/test_base.py
Expand Up @@ -251,7 +251,7 @@ def test_labels_hit(self):
labels = {"foo": "bar"}
client = _make_client(project=self.PROJECT)
job = self._make_one(self.JOB_ID, client)
job._properties["labels"] = labels
job._properties.setdefault("configuration", {})["labels"] = labels
self.assertEqual(job.labels, labels)

def test_etag(self):
Expand Down

0 comments on commit 80944f0

Please sign in to comment.