-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #207 from kaishi05/patch-4
Add WifiAwareManagerSnippet
- Loading branch information
Showing
2 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
src/main/java/com/google/android/mobly/snippet/bundled/WifiAwareManagerSnippet.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
* Copyright (C) 2024 Google Inc. | ||
* | ||
* 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 | ||
* | ||
* http://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. | ||
*/ | ||
package com.google.android.mobly.snippet.bundled; | ||
|
||
import android.content.Context; | ||
import android.content.pm.PackageManager; | ||
import android.net.wifi.aware.WifiAwareManager; | ||
import androidx.test.platform.app.InstrumentationRegistry; | ||
import com.google.android.mobly.snippet.Snippet; | ||
import com.google.android.mobly.snippet.bundled.utils.Utils; | ||
import com.google.android.mobly.snippet.rpc.Rpc; | ||
|
||
/** Snippet class exposing Android APIs in WifiAwareManager. */ | ||
public class WifiAwareManagerSnippet implements Snippet { | ||
|
||
private final Context mContext; | ||
private final boolean mIsAwareSupported; | ||
WifiAwareManager mWifiAwareManager; | ||
|
||
public WifiAwareManagerSnippet() throws Throwable { | ||
mContext = InstrumentationRegistry.getInstrumentation().getContext(); | ||
mIsAwareSupported = | ||
mContext.getPackageManager().hasSystemFeature(PackageManager.FEATURE_WIFI_AWARE); | ||
if (mIsAwareSupported) { | ||
mWifiAwareManager = (WifiAwareManager) mContext.getSystemService(Context.WIFI_AWARE_SERVICE); | ||
} | ||
Utils.adaptShellPermissionIfRequired(mContext); | ||
} | ||
|
||
/** Checks if Aware is available. This could return false if WiFi or location is disabled. */ | ||
@Rpc(description = "check if Aware is available.") | ||
public boolean isAwareAvailable() throws Throwable { | ||
if (!mIsAwareSupported || mWifiAwareManager == null) { | ||
return false; | ||
} | ||
return mWifiAwareManager.isAvailable(); | ||
} | ||
} |