-
Notifications
You must be signed in to change notification settings - Fork 295
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
Exclude (not set) city and country from reports. #9943
Changes from 2 commits
e783211
5d5f75e
af58eb8
3f0cd12
4e851a3
cf5d2f9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/** | ||
* Analytics 4 filter rows having (not set) values. | ||
* | ||
* Site Kit by Google, Copyright 2024 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
export function reportRowsWithSetValues( rows, maxRows = 3 ) { | ||
const rowsWithSetValues = rows.filter( | ||
( { dimensionValues } ) => dimensionValues[ 0 ].value !== '(not set)' | ||
); | ||
|
||
return rowsWithSetValues.slice( 0, maxRows ); | ||
} |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,80 @@ | ||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||
* Analytics-4 filter rows having (not set) values tests. | ||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||
* Site Kit by Google, Copyright 2022 Google LLC | ||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As above, and also fix the date:
Suggested change
|
||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||||||||||||||||||||||||||||||||||||||
* you may not use this file except in compliance with the License. | ||||||||||||||||||||||||||||||||||||||
* You may obtain a copy of the License at | ||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||
* https://www.apache.org/licenses/LICENSE-2.0 | ||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||
* Unless required by applicable law or agreed to in writing, software | ||||||||||||||||||||||||||||||||||||||
* distributed under the License is distributed on an "AS IS" BASIS, | ||||||||||||||||||||||||||||||||||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||||||||||||||||||||||||||||||||||||||
* See the License for the specific language governing permissions and | ||||||||||||||||||||||||||||||||||||||
* limitations under the License. | ||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
import { reportRowsWithSetValues } from './report-rows-with-set-values'; | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
describe( 'reportRowsWithSetValues', () => { | ||||||||||||||||||||||||||||||||||||||
const mockRows = [ | ||||||||||||||||||||||||||||||||||||||
{ dimensionValues: [ { value: 'value1' } ] }, | ||||||||||||||||||||||||||||||||||||||
{ dimensionValues: [ { value: '(not set)' } ] }, | ||||||||||||||||||||||||||||||||||||||
{ dimensionValues: [ { value: 'value2' } ] }, | ||||||||||||||||||||||||||||||||||||||
{ dimensionValues: [ { value: 'value3' } ] }, | ||||||||||||||||||||||||||||||||||||||
{ dimensionValues: [ { value: 'value4' } ] }, | ||||||||||||||||||||||||||||||||||||||
]; | ||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's define this in a
Suggested change
|
||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
it( 'should return rows with set dimension values only', () => { | ||||||||||||||||||||||||||||||||||||||
const result = reportRowsWithSetValues( mockRows ); | ||||||||||||||||||||||||||||||||||||||
expect( result ).toEqual( [ | ||||||||||||||||||||||||||||||||||||||
{ dimensionValues: [ { value: 'value1' } ] }, | ||||||||||||||||||||||||||||||||||||||
{ dimensionValues: [ { value: 'value2' } ] }, | ||||||||||||||||||||||||||||||||||||||
{ dimensionValues: [ { value: 'value3' } ] }, | ||||||||||||||||||||||||||||||||||||||
] ); | ||||||||||||||||||||||||||||||||||||||
} ); | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
it( 'should limit the number of returned rows to maxRows', () => { | ||||||||||||||||||||||||||||||||||||||
const result = reportRowsWithSetValues( mockRows, 2 ); | ||||||||||||||||||||||||||||||||||||||
expect( result ).toEqual( [ | ||||||||||||||||||||||||||||||||||||||
{ dimensionValues: [ { value: 'value1' } ] }, | ||||||||||||||||||||||||||||||||||||||
{ dimensionValues: [ { value: 'value2' } ] }, | ||||||||||||||||||||||||||||||||||||||
] ); | ||||||||||||||||||||||||||||||||||||||
} ); | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
it( 'should handle maxRows greater than the number of filtered rows', () => { | ||||||||||||||||||||||||||||||||||||||
const result = reportRowsWithSetValues( mockRows, 10 ); | ||||||||||||||||||||||||||||||||||||||
expect( result ).toEqual( [ | ||||||||||||||||||||||||||||||||||||||
{ dimensionValues: [ { value: 'value1' } ] }, | ||||||||||||||||||||||||||||||||||||||
{ dimensionValues: [ { value: 'value2' } ] }, | ||||||||||||||||||||||||||||||||||||||
{ dimensionValues: [ { value: 'value3' } ] }, | ||||||||||||||||||||||||||||||||||||||
{ dimensionValues: [ { value: 'value4' } ] }, | ||||||||||||||||||||||||||||||||||||||
] ); | ||||||||||||||||||||||||||||||||||||||
} ); | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
it( 'should handle empty rows input', () => { | ||||||||||||||||||||||||||||||||||||||
const result = reportRowsWithSetValues( [] ); | ||||||||||||||||||||||||||||||||||||||
expect( result ).toEqual( [] ); | ||||||||||||||||||||||||||||||||||||||
} ); | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
it( 'should handle rows where all values are "(not set)"', () => { | ||||||||||||||||||||||||||||||||||||||
const allNotSetRows = [ | ||||||||||||||||||||||||||||||||||||||
{ dimensionValues: [ { value: '(not set)' } ] }, | ||||||||||||||||||||||||||||||||||||||
{ dimensionValues: [ { value: '(not set)' } ] }, | ||||||||||||||||||||||||||||||||||||||
]; | ||||||||||||||||||||||||||||||||||||||
const result = reportRowsWithSetValues( allNotSetRows ); | ||||||||||||||||||||||||||||||||||||||
expect( result ).toEqual( [] ); | ||||||||||||||||||||||||||||||||||||||
} ); | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
it( 'should return an empty array when maxRows is 0', () => { | ||||||||||||||||||||||||||||||||||||||
const result = reportRowsWithSetValues( mockRows, 0 ); | ||||||||||||||||||||||||||||||||||||||
expect( result ).toEqual( [] ); | ||||||||||||||||||||||||||||||||||||||
} ); | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
it( 'should use the default maxRows value of 3 when not specified', () => { | ||||||||||||||||||||||||||||||||||||||
const result = reportRowsWithSetValues( mockRows ); | ||||||||||||||||||||||||||||||||||||||
expect( result ).toHaveLength( 3 ); | ||||||||||||||||||||||||||||||||||||||
} ); | ||||||||||||||||||||||||||||||||||||||
} ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's tweak the description to be a bit clearer: