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

Bugfix Check Network Connection When File Item Clicked #12093

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
bfccb3b
Check network connection when file item clicked
alperozturk96 Oct 25, 2023
497faaa
Fix code analytics
alperozturk96 Oct 25, 2023
55c7aca
Analysis: update lint results to reflect reduced error/warning count
invalid-email-address Oct 25, 2023
e202ce3
Merge master
alperozturk96 Oct 26, 2023
af0ea73
Merge remote-tracking branch 'origin/bugfix/Despite-connection-is-res…
alperozturk96 Oct 26, 2023
1ae36e9
Analysis: update lint results to reflect reduced error/warning count
invalid-email-address Oct 26, 2023
95931f2
Merge master
alperozturk96 Oct 31, 2023
c3a9060
Analysis: update lint results to reflect reduced error/warning count
invalid-email-address Oct 31, 2023
1551873
Revert styling changes
alperozturk96 Oct 31, 2023
a37e564
Merge remote-tracking branch 'origin/bugfix/Despite-connection-is-res…
alperozturk96 Oct 31, 2023
6dbf383
Optimize imports
alperozturk96 Oct 31, 2023
a79ba9d
Remove extra space in uploadFiles
alperozturk96 Oct 31, 2023
32d1e25
Merge master
alperozturk96 Nov 2, 2023
4f7b486
Use ConnectivityServiceImpl
alperozturk96 Nov 8, 2023
0803ecc
Merge master
alperozturk96 Nov 9, 2023
8ef5721
Merge master
alperozturk96 Nov 9, 2023
71d2983
Merge branch 'master' into bugfix/Despite-connection-is-restored-mess…
AndyScherzinger Nov 9, 2023
07bb2f4
Use interface rather than service
alperozturk96 Nov 10, 2023
0541fbc
Remove public access modifier
alperozturk96 Nov 10, 2023
c9ecd1b
Merge master
alperozturk96 Nov 22, 2023
c380ff1
Add missing interface method to tests
alperozturk96 Nov 22, 2023
8be0dbe
Merge master
alperozturk96 Dec 5, 2023
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
5 changes: 5 additions & 0 deletions app/src/androidTest/java/com/owncloud/android/AbstractIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,11 @@ public void uploadFile(File file, String remotePath) {

public void uploadOCUpload(OCUpload ocUpload) {
ConnectivityService connectivityServiceMock = new ConnectivityService() {
@Override
public boolean isConnected() {
return false;
}

@Override
public boolean isInternetWalled() {
return false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,11 @@ public void uploadOCUpload(OCUpload ocUpload) {

public void uploadOCUpload(OCUpload ocUpload, int localBehaviour) {
ConnectivityService connectivityServiceMock = new ConnectivityService() {
@Override
public boolean isConnected() {
return false;
}

@Override
public boolean isInternetWalled() {
return false;
Expand Down
15 changes: 15 additions & 0 deletions app/src/androidTest/java/com/owncloud/android/UploadIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ public class UploadIT extends AbstractOnServerIT {
targetContext.getContentResolver());

private ConnectivityService connectivityServiceMock = new ConnectivityService() {
@Override
public boolean isConnected() {
return false;
}

@Override
public boolean isInternetWalled() {
return false;
Expand Down Expand Up @@ -283,6 +288,11 @@ public BatteryStatus getBattery() {
@Test
public void testUploadOnWifiOnlyButNoWifi() {
ConnectivityService connectivityServiceMock = new ConnectivityService() {
@Override
public boolean isConnected() {
return false;
}

@Override
public boolean isInternetWalled() {
return false;
Expand Down Expand Up @@ -362,6 +372,11 @@ public void testUploadOnWifiOnlyAndWifi() {
@Test
public void testUploadOnWifiOnlyButMeteredWifi() {
ConnectivityService connectivityServiceMock = new ConnectivityService() {
@Override
public boolean isConnected() {
return false;
}

@Override
public boolean isInternetWalled() {
return false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,13 @@ import org.junit.Before
import org.junit.Test

abstract class FileUploaderIT : AbstractOnServerIT() {
var uploadsStorageManager: UploadsStorageManager? = null
private var uploadsStorageManager: UploadsStorageManager? = null

private val connectivityServiceMock: ConnectivityService = object : ConnectivityService {
override fun isConnected(): Boolean {
return false
}

val connectivityServiceMock: ConnectivityService = object : ConnectivityService {
override fun isInternetWalled(): Boolean = false
override fun getConnectivity(): Connectivity = Connectivity.CONNECTED_WIFI
}
Expand Down
4 changes: 4 additions & 0 deletions app/src/debug/java/com/nextcloud/test/TestActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ class TestActivity :
private lateinit var binding: TestLayoutBinding

val connectivityServiceMock: ConnectivityService = object : ConnectivityService {
override fun isConnected(): Boolean {
return false
}

override fun isInternetWalled(): Boolean {
return false
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
* and server reachability.
*/
public interface ConnectivityService {
boolean isConnected();

/**
* Check if server is accessible by issuing HTTP status check request.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ class ConnectivityServiceImpl implements ConnectivityService {
private final GetRequestBuilder requestBuilder;
private final WalledCheckCache walledCheckCache;


static class GetRequestBuilder implements Function1<String, GetMethod> {
@Override
public GetMethod invoke(String url) {
Expand All @@ -67,6 +66,21 @@ public GetMethod invoke(String url) {
this.walledCheckCache = walledCheckCache;
}

@Override
public boolean isConnected() {
Network nw = platformConnectivityManager.getActiveNetwork();
NetworkCapabilities actNw = platformConnectivityManager.getNetworkCapabilities(nw);

if (actNw == null) {
return false;
}

return actNw.hasTransport(NetworkCapabilities.TRANSPORT_WIFI) ||
actNw.hasTransport(NetworkCapabilities.TRANSPORT_CELLULAR) ||
actNw.hasTransport(NetworkCapabilities.TRANSPORT_ETHERNET) ||
actNw.hasTransport(NetworkCapabilities.TRANSPORT_BLUETOOTH);
}

@Override
public boolean isInternetWalled() {
final Boolean cachedValue = walledCheckCache.getValue();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,12 @@ protected void onCreate(Bundle savedInstanceState) {
}
}

public void checkInternetConnection() {
if (connectivityService.isConnected()) {
hideInfoBox();
}
}

@Override
protected void onStart() {
super.onStart();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,6 @@ protected final void showInfoBox(@StringRes int text) {
/**
* Hides the toolbar's info box.
*/
@VisibleForTesting
public final void hideInfoBox() {
mInfoBox.setVisibility(View.GONE);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -561,8 +561,7 @@ public void uploadFiles() {
getActivity(),
((FileActivity) getActivity()).getUser().orElseThrow(RuntimeException::new),
FileDisplayActivity.REQUEST_CODE__SELECT_FILES_FROM_FILE_SYSTEM,
getCurrentFile().isEncrypted()
);
getCurrentFile().isEncrypted());
}

@Override
Expand Down Expand Up @@ -976,6 +975,8 @@ public boolean onLongItemClicked(OCFile file) {

@Override
public void onItemClicked(OCFile file) {
((FileActivity) mContainerActivity).checkInternetConnection();

if (getCommonAdapter().isMultiSelect()) {
toggleItemToCheckedList(file);
} else {
Expand Down
Loading