Skip to content

Commit

Permalink
Merge pull request #207 from kaishi05/patch-4
Browse files Browse the repository at this point in the history
Add WifiAwareManagerSnippet
  • Loading branch information
xianyuanjia authored Aug 21, 2024
2 parents 456bbde + 530ffbf commit 48971ce
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
com.google.android.mobly.snippet.bundled.NetworkingSnippet,
com.google.android.mobly.snippet.bundled.FileSnippet,
com.google.android.mobly.snippet.bundled.SmsSnippet,
com.google.android.mobly.snippet.bundled.WifiAwareManagerSnippet,
com.google.android.mobly.snippet.bundled.WifiManagerSnippet,
com.google.android.mobly.snippet.bundled.StorageSnippet" />
</application>
Expand Down
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();
}
}

0 comments on commit 48971ce

Please sign in to comment.